我开始学习Ajax,这是运行Ajax的基本示例,因此当我遇到这些“未经检查的runtime.lastError”错误时该怎么办?
我尝试了Chrome扩展程序wappalyzer,但存在相同的问题,并且我正在使用xampp服务器。
<!DOCTYPE html>
<html>
<head>
<title>Hello Ajax</title>
<script>
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if(xhr.readystate == 4)
{
document.getElementById("ajax").innerHTML = xhr.responseText;
}
};
xhr.open('GET','content.html', true);
function sendajax() {
xhr.send();
}
</script>
</head>
<body>
<h3>Welcome to Ajax</h3>
<button onclick="sendajax();">Click Me!</button>
<div id="ajax"></div>
</body>
</html>
相同的代码在我正在研究的课程中正常工作,我相信我不知道的浏览器或服务器中的问题。