我正在修改此處找到的教程:http://www.w3schools.com/ajax/ajax_aspphp.asp 以便自動完成名稱庫存儲在數據庫中。我添加了一個按鈕,允許用戶爲數據庫添加一個名稱,如果它尚未在數據庫中。當我點擊按鈕時,該方法會觸發,但是addName()方法中指定的php腳本不會執行。這很奇怪,因爲showHint()方法中定義的腳本會執行。這是我的JavaScript(這是所有必須顯示的)。我省略了腳本:AJAX xmlhttp.open未運行腳本
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function showHint(str)
{
var xmlhttp;
if (str.length==0)
{
document.getElementById("txtHint").innerHTML="";
return;
}
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("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","gethint.php?q="+str,true);
xmlhttp.send();
}
function addName(str){
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.open("GET","addName.php?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>
<h3>Start typing a name in the input field below:</h3>
<form action="">
First name: <input type="text" id="txt1" onkeyup="showHint(this.value)" />
</form>
<p>Suggestions: <span id="txtHint"></span></p>
<button type="button" onclick="addName(document.getElementById('txt1').value)">Add Name</button>
</body>
</html>
我認爲jQuery的AJAX是越多越好,然後JavaScript的AJAX使用.... – Hardik
你有Chrome或一些其他瀏覽器與開發者工具?您應該打開Chrome開發人員工具(或同等版本)。使用Chrome執行此操作:F12,單擊網絡選項卡,然後單擊您的按鈕。您應該看到提出的請求。您可以點擊它來查看回復。也許PHP正在輸出一個錯誤。你可以檢查,並讓我們知道你的發現,如果你不能用這些信息自己修復:) – Paulpro