无所畏惧小小小
这是我的一个项目中的ajax请求部分function loadInfo() { //创建通道 ajax = new XMLHttpRequest(); //添加监听事件 ajax.onreadystatechange = show; ajax.open('post', 'application/new_file.php', true); ajax.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); ajax.send("thispage="+thispage+"&con=show"); } function show() { if(ajax.readyState == 4 && ajax.status == 200) { var str=ajax.responseText; console.log(str); } }str即为php页面中echo返回的内容。