var _____WB$wombat$assign$function_____ = function(name) {return (self._wb_wombat && self._wb_wombat.local_init && self._wb_wombat.local_init(name)) || self[name]; }; if (!self.__WB_pmw) { self.__WB_pmw = function(obj) { this.__WB_source = obj; return this; } } { let window = _____WB$wombat$assign$function_____("window"); let self = _____WB$wombat$assign$function_____("self"); let document = _____WB$wombat$assign$function_____("document"); let location = _____WB$wombat$assign$function_____("location"); let top = _____WB$wombat$assign$function_____("top"); let parent = _____WB$wombat$assign$function_____("parent"); let frames = _____WB$wombat$assign$function_____("frames"); let opener = _____WB$wombat$assign$function_____("opener"); 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; eval (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('http://www.kairuitest.com/e/extend/infocomment/?classid=34&id=98&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); }