键盘导航使用jQuery的菜单(KeyBoard Navigation for menu using

2019-07-17 17:19发布

我想键盘导航添加到菜单(UL李为主),我已绑定了keydown事件菜单(或者我应该绑定的keydown的文件?)

所使用的处理程序函数在下面给出

 KeyDown: function(e) {        

    var toFocus = false;


                  if (e.keyCode == 38) {
         toFocus = $((e.target/* li */).next()[0]);
      }
                          if (e.keyCode == 40) {
         toFocus = $((e.target).next()[1]);
      }
    if (toFocus) {
        $(e.target).attr('tabIndex', '-1');
        $(toFocus).attr('tabIndex', '0');
        toFocus.focus();
        return false;
        }
        }

在这里,我得到e.target为HTML,而不是李?

ü可以提出任何其他的方式来增加键盘导航?

Answer 1:

尝试使用自定义属性来保存tabid为上下。

...KeyDown: function(e) {
    var Direction;
    if (e.keyCode == 38)
         Direction = "toUp";
    else Direction = "toDown";

    var Focus = $("li[tabid=\""$(e.target.id).attr(Direction)"\"]");
    Focus.focus();
}

---

<li ... tabid="1" toUp="-1" toDown= "2" />
<li ... tabid="2" toUp= "1" toDown= "3" />
<li ... tabid="3" toUp= "2" toDown= "4" />
<li ... tabid="4" toUp= "3" toDown="-1" />

上面的代码只是为了显示这个想法,已经晚了,我没有时间来测试它。 所以,请不要投我失望不工作。

希望帮助



Answer 2:

我只是想知道,如果,而不是由你自己做这个,为什么不使用已经存在的插件?

jQuery的键盘导航

演示此页

我的演示 :只需添加一个演示页的例子



Answer 3:

HTML

<body>
    <input type="text" id="target-box" >
    <ul class="list">
        <li class="selected">Hello</li>
        <li>World</li>
    </ul>
</body>

jQuery的

$(document).on('focus','#target-box', function() {
    var target_box = $(this);

    $(document).on('keyup', function(e) {

        if(e.which == 38){ // up arrow
            var selected_item = $('.selected');
            if(typeof selected_item.prev()[0] !== 'undefined') {
                selected_item.prev().addClass('selected');
                selected_item.removeClass('selected');
            }
        } else if (e.which == 40) { // down arrow
            var selected_item = $('.selected');
            if (typeof selected_item.next()[0] !== 'undefined') {
                selected_item.next().addClass('selected');
                selected_item.removeClass('selected');
            }
        }

        if (e.keyCode == 13) { // enter
            target_box.val($('.selected').html());
        }
    });
});

CSS

.selected {
    width : 50px;
    background-color: gray;
}


文章来源: KeyBoard Navigation for menu using jquery