📅  最后修改于: 2022-03-11 15:02:12.031000             🧑  作者: Mango
const xhttp = new XMLHttpRequest();
xhttp.onload = function() {
document.getElementById("demo").innerHTML = this.responseText;
}
xhttp.open("GET", URL);
xhttp.send();