document.getElementById('minixzt').innerHTML="
- 1 : 惠惠爸 于 2011-9-20 说
我的天啦 都这么长时间没来了,真是不好意思啊,呵呵 一切都好。。。(通过网页) - 2 : 惠惠爸 于 2011-4-25 说
呵呵,总是在说经常来更新,又总是忘记,(通过网页) - 3 : 惠惠爸 于 2011-3-5 说
明天又要去趟宜昌,这次去还是得5天左右,呵呵 肯定又很想宝宝!(通过网页) - 4 : 惠惠爸 于 2011-2-10 说
先给大家拜个晚年,祝大家在新的一年工作顺利,身体健康!又是快一个月没来了,时间过的真快。。。谢谢各位朋友对本站的支持!(通过网页) - 5 : 惠惠爸 于 2011-1-19 说
呵呵,又是一多月没来了,天冷了 ,要过年啦 ,惠惠已经八个多月了,感觉就是不一样啊。呵呵(通过网页) - 更多>>
";
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=5&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);
}