📜  jquery ajax get - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:12.031000             🧑  作者: Mango

代码示例3
const xhttp = new XMLHttpRequest();
xhttp.onload = function() {
    document.getElementById("demo").innerHTML = this.responseText;
}
xhttp.open("GET", URL);
xhttp.send();