Warning: mkdir(): No space left on device in /www/wwwroot/z7.com/func.php on line 127
Warning: file_put_contents(./cachefile_yuan/lgnpeony.com/cache/28/8690e/ed376.html): failed to open stream: No such file or directory in /www/wwwroot/z7.com/func.php on line 115
var http_request = false;
function CommentMakeRequest(url, functionName, httpType, sendData) { http_request = false;
if (!httpType) httpType = "GET"; if (window.XMLHttpRequest) { // Non-IE...
http_request = new XMLHttpRequest();
if (http_request.overrideMimeType) {
http_request.overrideMimeType('text/plain');
}
} else if (window.ActiveXObject) { // IE
try {
http_request = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
http_request = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
} if (!http_request) {
alert('Cannot send an XMLHTTP request');
return false;
} var changefunc="http_request.onreadystatechange = "+functionName;
evals (changefunc);
//http_request.onreadystatechange = alertContents;
http_request.open(httpType, url, true);
http_request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
http_request.send(sendData);
}//评论分页提交
function CommentToPage(page){
CommentMakeRequest('/e/extend/infocomment/?classid=2&id=16308&doaction=&page='+page+'&t='+Math.random(),'CommentReturnedText','GET','');
}//评论分页显示
function CommentReturnedText() {
if(http_request.readyState == 4)
{
if(http_request.status == 200)
{
var messagereturn = http_request.responseText;
if(messagereturn!='isfail')
{
var r;
r=messagereturn.split('');
if(r.length!=1)
{
if(r[0]!='')
{
document.getElementById('infocommentnumarea').innerHTML=r[0];
}
document.getElementById('infocommentarea').innerHTML=r[1];
}
else
{
document.getElementById('infocommentarea').innerHTML=messagereturn;
}
}
}
else
{
alert('There was a problem with the request.');
}
}
}//首页
CommentToPage(0);