我一直试图让这个AJAX程序运行,但它无法在Chrome或Safari上运行。但它适用于Firefox。
function myFunction() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("myID").innerHTML =this.responseText;
}
};
xhttp.open("GET", "myPage.php", true);
xhttp.send();
}
答案 0 :(得分:0)