我正在調用一個PHP函數ajax ...我試圖顯示服務器時間使用PHP腳本時間輸入字段...我正在學習一個教程我發現每個單詞在線單詞,但由於某種原因,我不斷收到來自php文件在實時輸入字段中的實際文本......有人可以告訴我爲什麼發生這種情況?ajax調用PHP不能正常工作
這裏是我的代碼
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Server Time Example</title>
</head>
<body>
<script language="javascript" type="text/javascript">
<!--
//Browser Support Code
function ajaxFunction() {
var ajaxRequest; // The variable that makes Ajax possible!
try {
// Opera 8.0+, Firefox, Safari
ajaxRequest = new XMLHttpRequest();
} catch (e) {
// Internet Explorer Browsers
try {
ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {
// Something went wrong
alert("Your browser broke!");
return false;
}
}
}
// Create a function that will receive data sent from the server
ajaxRequest.onreadystatechange = function() {
if (ajaxRequest.readyState == 4) {
document.myForm.time.value = ajaxRequest.responseText;
}
}
ajaxRequest.open("GET", "serverTime.php", true);
ajaxRequest.send(null);
}
//-->
</script>
<form name='myForm'>
Name: <input type='text' onChange="ajaxFunction();" name='username' /> <br />
Time: <input type='text' name='time' />
</form>
</body>
</html>
這裏的PHP:
<?php
echo date("H:i:s");
?>
請顯示您的PHP代碼。 –
爲什麼不使用像j –
這樣的外部ajax庫@David MZ - 雖然jQuery很可愛,但並不是每個Web應用程序都要使用它。滾動你自己沒有任何問題。 –