我的 JavaScript 函数
function B_modeWindow (id,cords) {
loading();
var xmlhttp;
if (window.XMLHttpRequest) {
xmlhttp=new XMLHttpRequest();
} else {
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
var cords = document.getElementById(cords)
cords.innerHTML=xmlhttp.responseText;
var xy = cords.split("x");
hideloading();
}
}
xmlhttp.open("GET","processMapEdit.php?id="+id+"&x="+xy[0]+"&y="+xy[1],true);
xmlhttp.send();
}
返回:
Uncaught ReferenceError: xy is not defined
在:
xmlhttp.open("GET","processMapEdit.php?id="+id+"&x="+xy[0]+"&y="+xy[1],true);
似乎 xy 不存在,但它在上面仅定义了 5 行!这里有什么问题?