如果您在 FORM 元素前加上 P 元素,则示例中 DIV 下方的元素将不会被选中!
<P><FORM id=f ...
<INPUT ...>
<DIV><INPUT (this element is not selectable)
</DIV>
</FORM>
上面的第二个输入在 IE 中不会$('#f INPUT').events
发生 在以下位置尝试测试用例:http: //jsfiddle.net/jorese/Bzc7M/
在 IE 中,您将收到 alert=3,删除 FORM 元素前面的 P 元素,您将获得预期的 alert=5。在 Chrome|FF 中,您会得到 alert=5 的预期。
有人可以解释一下吗?