我想測試PHP阿賈克斯用一個簡單的program.I我使用HTML和PHP文件都存儲在同一目錄(/ var/www/html等) 。當我點擊按鈕,它顯示了在控制檯下面的錯誤。 XML解析錯誤:沒有根元素中找到位置。 ??XML解析錯誤:沒有根元素中找到位置(PHP +阿賈克斯)
HTML文件
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<title> Ajax testing </title>
<script type="text/javascript">
function load(){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("result").innerHTML = this.responseText;
}
};
xmlhttp.open("GET", "simple.php" , true);
xmlhttp.send();
}
</script>
</head>
<body>
<button onclick="load();">Click here</button>
<div id="result"> </div>
</body>
</html>
PHP文件
<?php
echo "Hello";
?>
什麼是錯的代碼?