我有xmlhttp status == 500而不是responsetext,我的showtable.php在几个条件下回显一个包含不同内容的表。
$("#host-type-list").click(function(){
var hostvalue=$("#selected-host").text();
if(window.XMLHttpRequest) {
xmlhttp=new XMLHttpRequest();
}
else {
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4) {
document.getElementById("tbldescription").innerHTML = xmlhttp.responsetext;
}
}
xmlhttp.open("GET","showtable.php?req="+hostvalue,true);
xmlhttp.send();
});