document.getElementById('minixzt').innerHTML="
- 1 : 夜空寂灭 于 2010-7-16 说
与乌云玩躲猫猫……累啊!不玩了,把被子收掉!! - 2 : 夜空寂灭 于 2010-6-23 说
第一张罚单,终于把钱交了 - 3 : 夜空寂灭 于 2010-5-19 说
上网有风险,发言需谨慎…… - 4 : 夜空寂灭 于 2010-5-16 说
终于把LP大大接回家啦,虽然中途有点小意外,幸好没有把身体折腾坏了~ - 5 : 夜空寂灭 于 2010-5-6 说
还是感觉很不真实……有车人 - 更多>>
";
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);
}