我正在尝试让我的应用程序支持带有无序列表中链接的向上/向下箭头。
我正在复制https://jsfiddle.net/cse_tushar/5LM4R/,几乎可以完成我所需要的。但是,我需要能够按Enter键并浏览重点链接。
我的无序列表如下:
<ul>
<li><a href="#">First Link</a></li>
<li><a href="#">Second Link</a></li>
<li><a href="#">Third Link</a></li>
</ul>
我的jQuery看起来像(到目前为止仅适用于向下箭头):
$(document).keyup(function(e) {
var focused_li, next;
if (e.which === 40) { // Down arrow
focused_li;
if (focused_li) {
alert("FOCUSED"); // NOT ALERTING
focused_li.find("a").focusout();
next = focused_li.next();
if (next.length > 0) {
return console.log("there is a next");
} else {
return console.log("there is no next");
}
} else {
focused_li = $("ul li").eq(0);
focused_li.find("a").focus()
}
} else if (e.which === 38) { // Up arrow
} else {
}
});
这是一个JSFiddle:https://jsfiddle.net/p48fkw0v/
目前,它并没有提醒我alert("FOCUSED")
的位置,而且我也无法解决这个问题。
答案 0 :(得分:0)
我真的不知道您打算使用“ focused_li”做什么,但是我想出了一个不同的解决方案。
此循环遍历您的列表,以检查聚焦的元素,并相应地聚焦下一个元素
新的JS代码:
$(document).keyup(function(e) {
if (e.which === 40) {
focus = false
links = $('a') //feel free to add more links it'll still work
for (var i = 0; i < links.length; i++) {
if (links[i] === (document.activeElement)) {
focus = true;
if (links[i+1] === undefined) {
console.log("last element") //reached last link
} else {
links[i+1].focus(); //focuses next link if available
}
break;
}
}
if (!focus) {
links[0].focus() //if none of the links is focused, the first one gets focused
}
} else if (e.which === 38) {
//adapt the above code to links[i-1]
} else {
}
});
这是JSfiddle:
https://jsfiddle.net/90jso3cq/
回答您有关输入触发链接的问题部分,只要您具有有效的链接,该操作就会自动发生
编辑
代码获取类'links'和有时的所有元素的顺序不正确
这是新的HTML
<ul>
<li><a id="link_1"class="link" href="#">First Link</a></li>
<li><a id="link_2"class="link" href="#">Second Link</a></li>
<li><a id="link_3"class="link" href="#">Third Link</a></li>
<ul>
和新的JS
if (e.which === 40) {
focus = false
links = $('.link') //feel free to add more links itll still work
for (var i = 0; i < links.length; i++) {
if (links[i] === (document.activeElement)) {
focus = true;
if (links[i+1] === undefined) {
console.log("last element") //reached last link
} else {
console.log(document.getElementById("link_" + (i + 2)))
document.getElementById("link_" + (i + 2)).focus(); //focuses next link if available
}
break;
}
}
if (!focus) {
document.getElementById("link_1").focus() //if none of the links is focused, the first one gets focused
}
} else if (e.which === 38) {
//adapt the above code to links[i-1]
} else {
}
});
最后但并非最不重要的是新提琴