这段代码看起来很长——但我不完全理解用于转换这段代码的 jquery .ajax 函数——我的主要问题是我不知道如何实现 responseText-bit
很感谢任何形式的帮助:
function getCategory(category){
if (window.XMLHttpRequest){
xmlhttp=new XMLHttpRequest();
}else{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
document.getElementById("products").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","productlist.php?q="+category,true);
xmlhttp.send();
}