如何阻止 keydown 事件干扰表单字段?

发布于 2024-09-13 04:41:24 字数 338 浏览 5 评论 0原文

我已经绑定了一些事件,使其在按左右箭头键时发生,如下所示:

$(document).keydown(function(e) {
    switch(e.which) {
        case 39: $("#next").trigger('click');
        break;

        case 37: $("#prev").trigger('click');
        break;              
    }
});

但是,显然,如果您在表单中并按向左和向右在文本中移动,则会触发这些事件。

我该如何改变这种情况以免发生这种情况?

I've bound some events to happen on left and right arrow key press like so:

$(document).keydown(function(e) {
    switch(e.which) {
        case 39: $("#next").trigger('click');
        break;

        case 37: $("#prev").trigger('click');
        break;              
    }
});

However, obviously if you are in a form and press left and right to move through text, these events fire.

How do I change this so that that doesn't happen?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

彼岸花ソ最美的依靠 2024-09-20 04:41:24

您可以检查事件的目标(此处了解更多信息

$(document).keydown(function(e) {
    //var target = (e.target) ? e.target : e.srcElement; // IE uses srcElement
    // jQuery seems to handle this, so e.target should be fine

    if(e.target.nodeName != 'INPUT') {
        switch(e.which) {
            case 39: $("#next").trigger('click');
            break;

            case 37: $("#prev").trigger('click');
            break;              
        }
    }
});

,也可以阻止该事件通过将事件处理程序附加到输入元素来防止冒泡:

$('input').keydown(function(e) {
    e.stopPropagation();
});

更新:

同样,您可能想测试 TEXTAREA 的节点名称。

这是一个示例: http://jsfiddle.net/86CKw/1/

You could check the target of the event (more information here)

$(document).keydown(function(e) {
    //var target = (e.target) ? e.target : e.srcElement; // IE uses srcElement
    // jQuery seems to handle this, so e.target should be fine

    if(e.target.nodeName != 'INPUT') {
        switch(e.which) {
            case 39: $("#next").trigger('click');
            break;

            case 37: $("#prev").trigger('click');
            break;              
        }
    }
});

or you could prevent the event from bubbling up by attaching an event handler to the input elements:

$('input').keydown(function(e) {
    e.stopPropagation();
});

Update:

Likewise you might want to test the node name for TEXTAREA.

Here is an example: http://jsfiddle.net/86CKw/1/

这是我能找到的最优雅的解决方案:

$(document).ready(function() {
  $(document).keypress(function() {
    if ( this !== event.target && (/textarea|select/i.test( event.target.nodeName ) || event.target.type === "text") ) {
      return;
    }

    // deal with the events here
    ...

  }); 
});

This is the most elegant solution I could find:

$(document).ready(function() {
  $(document).keypress(function() {
    if ( this !== event.target && (/textarea|select/i.test( event.target.nodeName ) || event.target.type === "text") ) {
      return;
    }

    // deal with the events here
    ...

  }); 
});
迟到的我 2024-09-20 04:41:24
if (e.target.closest('form').length===0) {
    // keypress did not occur inside a form. handle it.
}
if (e.target.closest('form').length===0) {
    // keypress did not occur inside a form. handle it.
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文