我希望我能正确解释这一点......
以下网页包含一个带有 onSubmit 处理程序的表单。onSubmit 处理程序是一个始终返回的函数false
,这意味着永远不应该提交表单。但这仅适用于 IE8(也可能适用于其他版本的 IE)。
要让它在 Firefox 和 Chrome 中工作,我必须将警报更改为:
alert(foo["firstName"].value);
我理解为什么使用方括号是正确的形式,因为该形式是一个关联数组。
- 但是为什么在 FF 和 Chrome 中提交的表单(
form("firstName")
显然是错误的)? - 我能捕捉到错误吗?(我在 Firebug 中看不到任何明显的东西。)
- 有没有办法确保表单仅在
true
返回时提交?
谢谢
<html>
<head>
<script>
function alwaysReturnFalse() {
alert(foo("firstName").value);
return false;
}
</script>
</head>
<body>
<form name="foo" onSubmit="return alwaysReturnFalse();">
First name: <input name="firstName" type="text" value="Bob"/><br/>
Last name: <input name="lastName" type="text"/><br/>
<input type="submit" value="Submit"/>
</form>
This form has an onSubmit handler that always returns false - meaning the form should never submit.<br/>
It works in IE8 - e.g. the onSubmit handler executes an alert() and then returns false.<br/>
It fails in Firefox and Chrome - e.g. the form is submitted.
</body>
</html>