我不知道我在做什麼錯,但都看起來不錯。我正在研究localhost
,並且在嘗試加載文件時遇到問題。Ajax POST請求不起作用
這是我的代碼。我在NetBeans中工作,控制檯清晰無誤。
<!DOCTYPE html>
<html>
<head>
<script>
function loadXMLDoc() {
var xmlhttp;
if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
} else { // code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("myDiv").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("POST", "demo_post.php", true);
xmlhttp.send();
}
</script>
</head>
<body>
<h2>AJAX</h2>
<button type="button" onclick="loadXMLDoc()">Request data</button>
<div id="myDiv"></div>
</body>
</html>
當我執行此代碼時,我沒有得到任何結果。
爲什麼你不使用JQuery的.ajax功能? – boyd
'console.log(xmlhttp)' –
標記爲「jquery」並使用純javascript。 #likeaboss – MightyPork