的 XMLHttpRequest 的不同行为与 <按钮> 相比
考虑以下代码:
index.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<form>
<button id="getInfoButton1"></button>
<input type="button" id="getInfoButton2"></input>
</form>
</body>
</html>
以及附带的 JavaScript 文件:
script.js
window.onload = initAll;
var req;
function initAll()
{
document.getElementById("getInfoButton1").onclick = getInfo;
document.getElementById("getInfoButton2").onclick = getInfo;
}
function getInfo()
{
req = new XMLHttpRequest();
var URL = "index.html";
req.open("GET", URL, true);
req.onreadystatechange = whatsTheStatus;
req.send(null);
}
function whatsTheStatus()
{
if (req.readyState != 4) { return; }
alert(req.status);
}
(我已经削减了很多代码,但这个示例仍然突出显示了错误)
问题是这样的: 当您加载此按钮并单击两个按钮时,第一个按钮将显示状态 0,而第二个按钮将显示状态 200。
当然,我希望两者都显示 200,但我不知道为什么
我浏览了网络并询问了我公司的其他一些开发人员,但我们似乎找不到答案。有什么想法吗?
如果有帮助,我正在 Firefox 3.6.8 上进行测试。另外,我通过 WAMPserver 2.0 从本地主机运行它。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要
如果您省略
一般来说,您应该在表单上捕获
onsubmit
而不是在特定按钮上捕获onclick
,以确保您始终收到通知,如果表单是通过其他方式提交的,例如 Enter按下。 (因此,您将使用普通的submit
按钮。)使用事件处理程序中的return false
来阻止表单提交继续进行。You would need
<button type="button">
to reproduce the behaviour of<input type="button">
.If you omit the type on
<button>
it defaults tosubmit
(except on IE<8 due to a bug; for this reason you should always use atype
attribute on<button>
). A submit button would cause the form to submit, causing a navigation and cancelling the XMLHttpRequest.In general you should be trapping
onsubmit
on the form rather thanonclick
on a particular button, to ensure you always get informed if the form is submitted by another means such as Enter being pressed. (Consequently you'd use a normalsubmit
button.) Usereturn false
from the event handler to prevent the form submission from going ahead.