这是针对非折旧的新jquery .load()ajax简写方法。
例如,以下jquery ajax简写方法的等效javascript是什么?
$("#targetdiv").load("page.html");
答案 0 :(得分:2)
XMLHttpRequest
对象是javascript对象允许ajax请求,下面是相同的例子(像jquery这样的引擎库下使用此对象只用于ajax请求)
function loadDoc() {
var xhttp = new XMLHttpRequest();
xhttp.open("GET", "ajax_info.txt", true);
xhttp.send();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML =
this.responseText;
}
};
}