thinkphpajaxphp函数
<code>var xmlhttp;xmlhttp=new XMLHttpRequest();xmlhttp.open("GET","MemberController.class.php/ajax",true);xmlhttp.send(null);xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { alert(this.responseText); } else {alert('sb'); } }</code>
为何这个一直输出sb呢,我是请求被页面的ajax的方法返回值,一直不行