How to navigate with keyboard through lt;ulgt; lt;ligt; element(如何通过 lt;ulgt; 使用键盘导航lt;ligt;元素)
问题描述
可能重复:
使用 jquery 的菜单的键盘导航
我使用 <ul> 创建了一个菜单.<li>
标记并在用户按下文本框中的 Enter
键时将其显示给用户.他可以使用鼠标选择菜单项目(在菜单中导航),但我也希望允许他使用键盘的向上/向下按钮从该菜单中选择项目.
I created a menu using <ul> <li>
tags and showing it to the user when he presses Enter
key in the textbox. He can select items of the menu (navigate in menu) using mouse but I want also to allow him to select items from that menu using up/dow buttons of the keyboard for example.
有没有办法使用 jQuery 或 CSS 来做到这一点?
Is it any way to do that using jQuery or CSS?
我的菜单结构如下:
<div class="services">
<div class="items">
<ul>
<li class="mail-icon"><a href="#" id="mail"><?php echo $langmsg['mail']; ?></a></li>
<li class="forum-icon"><a href="#" id="forum"><?php echo $langmsg['forum']; ?></a></li>
<li class="chat-icon"><a href="#" id="chat"><?php echo $langmsg['chat']; ?></a></li>
</ul>
</div>
</div>
注意:<li>
元素也有背景图片.
Note: <li>
element has a background image also.
推荐答案
工作中的jsFiddle
以下是如何处理循环选择:
Here is how to handle circular selection:
if (e.keyCode == 38) { // up
var selected = $(".selected");
$(".services li").removeClass("selected");
// if there is no element before the selected one, we select the last one
if (selected.prev().length == 0) {
selected.siblings().last().addClass("selected");
} else { // otherwise we just select the next one
selected.prev().addClass("selected");
}
}
css:
.services li.selected {
background-color: grey;
}
这篇关于如何通过 <ul> 使用键盘导航<li>元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何通过 <ul> 使用键盘导航<li&
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01