Why does returning false in the keydown callback does not stop the button click event?(为什么在 keydown 回调中返回 false 不会停止按钮单击事件?)
问题描述
我有一个按钮和以下 javascript 例程.
I have a button and the following javascript routine.
$("button").keydown( function(key) {
switch(key.keyCode) {
case 32: //space
return false;
}
} );
据我了解,return false;
会阻止按键被处理.所以 $("button").click();
不会被调用.对于其他键码,这按预期工作.例如,如果我截取40
,即向下按钮,则页面不滚动.
as I understood it, the return false;
would stop the keypress from being processed. So $("button").click();
would not be called. For other keyCodes, this works as expected. For example, if I intercept40
, which is the down button, the page is not scrolling.
我在 Firefox 中注意到了这种行为.
I noticed this behavior in Firefox.
为什么 return false;
不会停止空间上的按钮单击事件?javascript 规范对此有何评论?
Why does the return false;
does not stop the button click event on space? What does the javascript spec say about this?
推荐答案
希望这能回答你的问题:
Hope this answers your question:
<input type="button" value="Press" onkeydown="doOtherStuff(); return false;">
return false;
如果在 HTML 中的事件处理程序属性的末尾调用,则成功取消跨浏览器的事件.据我所知,这种行为在任何地方都没有正式规定.
return false;
successfully cancels an event across browsers if called at the end of an event handler attribute in the HTML. This behaviour is not formally specified anywhere as far as I know.
如果您改为通过 DOM 元素上的事件处理程序属性设置事件(例如 button.onkeydown = function(evt) {...}
)或使用 addEventListener
/attachEvent
(例如 button.addEventListener("keydown", function(evt) {...}, false)
)然后只返回 false
来自该函数的功能并非在每个浏览器中都有效,您需要从我的其他答案中执行 returnValue
和 preventDefault()
内容.preventDefault
在 DOM 2 规范 并由大多数主流现代浏览器实现.returnValue
是特定于 IE 的.
If you instead set an event via an event handler property on the DOM element (e.g. button.onkeydown = function(evt) {...}
) or using addEventListener
/attachEvent
(e.g. button.addEventListener("keydown", function(evt) {...}, false)
) then just returning false
from that function does not work in every browser and you need to do the returnValue
and preventDefault()
stuff from my other answer. preventDefault
is specified in the DOM 2 spec and is implemented by most mainstream modern browsers. returnValue
is IE-specific.
这篇关于为什么在 keydown 回调中返回 false 不会停止按钮单击事件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么在 keydown 回调中返回 false 不会停止按钮单击事件?


- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- Flexslider 箭头未正确显示 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 400或500级别的HTTP响应 2022-01-01