我正在尝试学习XmlHttpRequest。我跟着this W3School Tutorial。
文件httprequest.0.js中的:
function myHttpRequestFunction()
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
alert("A");
xmlhttp.open("GET","httprequest.0.xml",false);
alert("B");
xmlhttp.send(); // never succeeds this line !
alert("C");
xmlDoc=xmlhttp.responseXML;
alert("D");
}
一切似乎都在那条线上突破:xmlhttp.send();
是否存在Javascript中的异常捕获程序或管理此类崩溃的任何内容?也许xmlhttprequest状态?
文件httprequest.0.html中的:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<!-- Scripts -->
<script type="text/javascript" src="httprequest.0.js"></script>
</head>
<body onload="myHttpRequestFunction()">
<h3>XMLHttpRequest</h3><p>
<div id="RequestContent"> </div>
</body>
</html>`
文件httprequest.0.xml中的:
<root>Test Httprequest.0</root>
你有什么建议吗?
答案 0 :(得分:1)
尝试发送此信息:
xmlhttp.send(null);