按键 - 转义不起作用
$(el).bind('blur keypress', function(event){
if(event.type == 'keypress' && event.keyCode != 13) return;
alert(1);
});
即使我按转义键,我也会收到警报框,但我不应该这样做,因为我只允许输入...
$(el).bind('blur keypress', function(event){
if(event.type == 'keypress' && event.keyCode != 13) return;
alert(1);
});
I get the alert box even when I press escape, and I shouldn;t because I only allowed Enter...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,“return”将向被调用函数发送 true 值,因此在这种情况下,允许执行默认事件,因此无论您按下什么按钮都会收到警报。因此将 return 语句更改为 return false
By default "return" will send the called function the value true, so in this case the default event is allowed to be performed so whatever button u press u will get the alert. So change the return statement as return false
如果您只想允许
Enter
,请尝试此操作。检查true
条件,它会让您更清楚。另外,您还可以使用e.which
来代替e.keyCode
,它是由jQuery
抽象的,使其跨浏览器兼容。If you want to only allow
Enter
then try this. Check fortrue
condition it will make more clear to you. Also instead ofe.keyCode
you can usee.which
, it is abstracted byjQuery
to make it corss browser compatible.