冒泡由禁用元素触发的事件
问题是:被禁用的元素是否应该产生一个在其父元素上触发的事件?
<div id="test">
<button disabled="disabled">Click me</button>
</div>
<script type="text/javascript">
document.getElementById("test").onclick = function() {
alert("Clicked!");
};
</script>
除 IE 之外的所有浏览器都会阻止触发该事件,但 IE 不会。这种行为是否有记录或标准化?哪种浏览器可以正确处理上面的代码?
The question is: should the disabled element produce an event that will be triggered on its parent(s)?
<div id="test">
<button disabled="disabled">Click me</button>
</div>
<script type="text/javascript">
document.getElementById("test").onclick = function() {
alert("Clicked!");
};
</script>
All browsers except IE prevent the event from being fired, but IE doesn't. Is this behavior documented or standardized? Which of browsers process the code above correctly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 http://www.quirksmode.org/js/events_advanced.html 我高度建议使用事件委托而不是
.onclick()
绑定。例子::)
As per http://www.quirksmode.org/js/events_advanced.html I highly recommend to use event delegation instead of
.onclick()
binding. Example::)