2

这段代码看起来很长——但我不完全理解用于转换这段代码的 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();
}
4

1 回答 1

3
$.ajax({
    url: "productlist.php?q=" + category,
    success: function( data ) {
         $("#products").html( data );
    }
});

或者简单地说:

$("#products").load("productlist.php?q=" + category);

以及函数包装的原因:

function getCategory( category ) {
    $("#products").load("productlist.php?q=" + category);
} 
于 2012-11-07T20:59:00.853 回答