我只想用我得到的内容替换 DIV 内容。在我使用 ajax 向服务器发出 get 请求之后。
$.ajax({
type: "GET",
url: "http://127.0.0.1:8000/result/?age="+ ageData +"&occasion="+
occasionData +"&relationship="+ forData +"#",
success: function () {
$("#testDIV").load();
}
});
“testDIV”是我要替换从服务器获取的内容的 div 的 id。