使用 jquery 的菜单键盘导航
我正在尝试将键盘导航添加到菜单(基于 ul li ),我已将 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 as html 而不是 li ?
你能建议任何其他方式来添加键盘导航吗?
I am trying to add keyboard navigation to Menu(ul li based
) , i have bound the keydown event to menu (or should i bind keydown to the document ?)
the handler function used is given below
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;
}
}
here i get e.target as html instead of li ?
can u suggest any other way to add keyboard navigation ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我只是想知道,为什么不使用现有的插件,而不是自己做呢?
演示 此处页面
I just wonder if, instead of doing this by your self, why not using an already existing plugin?
demo page here
尝试使用自定义属性来保持 tabid 的向上和向下。
上面的代码只是为了展示想法,现在已经晚了,我没有时间测试它。
Try to use custom attribute to hold the tabid for up and down.
The above code is just to show the idea, it is late now and I didn't have time to test it.
HTML
jQuery
CSS
HTML
jQuery
CSS