jQuery/js 处理“双焦点”带光标和事件

发布于 2024-08-20 11:56:31 字数 1598 浏览 5 评论 0原文

我正在为菜单启用键盘导航。我在特定情况下遇到了一个问题:

<ul>
    <li><a href="" class="link1">link</a></li>
    <li><a href="" class="link2">link</a></li>
    <li><a href="" class="link3">link</a></li>
</ul>

jQuery:

$('ul').keypress(function (eh){
    var keyPressed = eh.keyCode;
    if (keyPressed=='37'){
        $currentFocusedLink.closest('li').prev('li:first').find('a:first').focus()

};

发生了什么:

我正在捕获箭头键以在菜单之间导航。除非光标位于一个链接的第一个字符之前并且我点击后退箭头,否则这种方法有效。

我认为发生的情况是光标移动,然后捕获按键。由于光标移动到前一个锚标记,因此它会触发焦点。但因为我还捕获按键并分配焦点,所以无论我的焦点事件是什么,都会被调用两次。

有什么办法可以解决这个问题吗?

更新:

这里有一些示例代码,可以尝试更好地了解正在发生的情况。

HTML:

<div class="testNav">
      <a href="">TEST LINK 1</a>
      <a href="">TEST LINK 2</a>
      <a href="">TEST LINK 3</a>
      <a href="">TEST LINK 4</a>
      <a href="">TEST LINK 5</a>
</div>

jQUery:

var $activeLink;

$('.testNav')
    .find('a')
        .focus(function(){
             $activeLink = $(this);      
        })
        .end()
    .keypress(function (eh){
        var keyPressed = eh.keyCode;
        if (keyPressed=='37'){
            $activeLink.prev('a').focus()
        };
     });

请注意,您可以向前和向后切换到每个链接。

现在,点击第 5 个链接并按后退箭头。它将跳转到 LINK 3。再次按下它,它会转到 LINK 1。

认为原因如上所述......我的脚本应用了焦点,但是将光标移入的操作也是如此前一个锚标记。当您点击后退箭头时,这两种情况都会发生。

I'm enabling keyboard navigation for a menu. I'm running into an issue in a particular situation:

<ul>
    <li><a href="" class="link1">link</a></li>
    <li><a href="" class="link2">link</a></li>
    <li><a href="" class="link3">link</a></li>
</ul>

the jQuery:

$('ul').keypress(function (eh){
    var keyPressed = eh.keyCode;
    if (keyPressed=='37'){
        $currentFocusedLink.closest('li').prev('li:first').find('a:first').focus()

};

What happens:

I'm capturing the arrow keys to navigate between the menus. This works EXCEPT when the cursor is before the first character of one link and I hit the back arrow.

What I think happens is that the cursor moves and then the keypress is captured. Because the cursor moves into the previous anchor tag, it then triggers focus. But because I'm also capturing the keypress and assigning focus, whatever my focus event is gets called twice.

Any way to get around this issue?

UPDATE:

Here's a bit of sample code to try out to get a good idea of what is happening.

HTML:

<div class="testNav">
      <a href="">TEST LINK 1</a>
      <a href="">TEST LINK 2</a>
      <a href="">TEST LINK 3</a>
      <a href="">TEST LINK 4</a>
      <a href="">TEST LINK 5</a>
</div>

jQUery:

var $activeLink;

$('.testNav')
    .find('a')
        .focus(function(){
             $activeLink = $(this);      
        })
        .end()
    .keypress(function (eh){
        var keyPressed = eh.keyCode;
        if (keyPressed=='37'){
            $activeLink.prev('a').focus()
        };
     });

Note that you can tab forward and backward to each link just fine.

Now, tab to the 5th link and push the back arrow. It will jump to LINK 3. Push it again and it goes to LINK 1.

I think the reason is as stated above...my script applies focus, but so does the act of moving the cursor into the previous anchor tag. Both happen when you hit the back arrow.

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

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

发布评论

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

评论(2

烟织青萝梦 2024-08-27 11:56:32

您可以使用 jCaret 插件检查光标是否在第一个字符之前并处理这种情况属于边缘情况。

You could use the jCaret plugin to check if your cursor was before the first character and handle that situation as an edge case.

他不在意 2024-08-27 11:56:32

解决方案:

我应该早点想到这一点,但最终的解决方案是将“preventDefault()”附加到按键事件。关键是首先检测按键,然后仅防止您正在查找的特定按键上的默认(否则会失去网页上的键盘功能)。

SOLUTION:

This should have occurred to me sooner, but the eventual fix was to attach 'preventDefault()' to the keypress event. The key is to first detect the key presses, then only preventDefault on the particular keys you are looking for (or else lose keyboard functionality on the web page).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文