为什么XMLHTTP status == 500并且没有responsetext?

时间:2014-10-06 09:50:38

标签: php ajax xmlhttprequest

我有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();
});

0 个答案:

没有答案