document.getElementById('minixzt').innerHTML="
- 1 : 网之乐章 于 2010-12-12 说
还有几个小时,丑丑就一周岁了。本来想写点什么,结果还是没写成,改天了。(网页) - 2 : 网之乐章 于 2010-12-12 说
好消息,麦叔叔最近新推出将普通雪糕加上奥利奥饼干末的“麦旋风”,就卖9块!(WAP) - 3 : 网之乐章 于 2010-12-11 说
从14:05到14:35,丑丑哭闹了整整半个小时。(WAP) - 4 : 网之乐章 于 2010-12-11 说
整一上午,南城百货的大喇叭都在叫嚣“熟食全场8折”,待交钱时问了才被告知系统还没设好折扣率,只能按原价付款。极度鄙视中……(网站) - 5 : 网之乐章 于 2010-12-11 说
把繁体字当错字,编辑小学没毕业,还是把化粪池当脑袋了?(WAP) - 6 : 网之乐章 于 2010-12-11 说
好久没下的雨,今天梦中醒来时听到了。(WAP) - 7 : 网之乐章 于 2010-12-11 说
丑丑很快就一岁了。这几天总想写点什么。(WAP) - 8 : 网之乐章 于 2010-12-10 说
塞!塞!!塞!!!(WAP) - 9 : 网之乐章 于 2010-12-5 说
黄姚古镇的小巷其实是四通八达的,只是保安星罗其布,能混进去也是一种本事。(WAP) - 10 : 网之乐章 于 2010-12-5 说
想给丑丑照张露齿笑的相片可不是容易的事。(WAP) - 更多>>
";
function saveSRSXZT(){
if (document.srsxzt_form.content.value==''){
document.srsxzt_form.content.focus();
return false;
}
if(document.srsxzt_form.iss.checked)
iss=0
else
iss=1
getSRSxztdata('Plugins/SRS_XiaoZhiTiao/minixzt.asp?action=post&s=10&content='+encodeURIComponent(document.srsxzt_form.content.value)+'&iss='+iss);
}
function createxmlhttp(){
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}catch (e) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
if (xmlhttp.overrideMimeType) {//设置MiME类别
xmlhttp.overrideMimeType('text/xml');
}
}
return xmlhttp;
}
function getSRSxztdata(sURL){
var xmlhttp=createxmlhttp();
if(!xmlhttp){
alert("你的浏览器不支持XMLHTTP!!");
return;
}
xmlhttp.open("GET",sURL,true);
//中文乱码!!
//xmlhttp.setrequestheader("content-type","application/x-www-form-urlencoded");
xmlhttp.onreadystatechange= function () {
if(xmlhttp.readyState==4){
if(xmlhttp.status==200){
//alert(xmlhttp.responseText);
//return xmlhttp.responseText;
//return xmlhttp.responseText;
document.getElementById('minixzt').innerHTML=xmlhttp.responseText;
}
}
}
xmlhttp.send(null);
}