首先,我沉迷于 jQuery,但我想创建一些无框架且尽可能轻量级的东西,所以我自己 ajaxing。
我有这个代码:
function ajax(url)
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
console.log(xmlhttp.responseText);
}
else
console.log( "error");
}
xmlhttp.open("GET",url,true);
xmlhttp.send();
}
我在脑海中调用一次:
ajax("url");
但是,我在控制台中看到 3 个“错误”日志,第 4 个是 rsponseText。
任何人都知道为什么会发生这种情况以及如何避免它?我的页面中没有其他脚本。