hey guys, probably a simpel question, however couldn t find anything online.
i 有一个附有搜索结果的清单,希望能够用我手和 down钥匙通过清单。
if (e.keyCode == 40) { //down
//alert( down );
$( #searchresults ul li ).each(function() {
});
}
if (e.keyCode == 38) { //up
//alert( up );
}
if (e.keyCode == 13) { //enter
//alert( enter );
}
the searchresults look like this:
<ul>
<li class="matched"><a href="link1">link1</a></li>
<li class="matched"><a href="link2">link2</a></li>
<li class="matched"><a href="link3">link3</a></li>
</ul>
因此,从根本上说,只是想通过我对钥匙的搜索结果而行走。 选择目前要素可能只是改变背景的颜色,而当媒体进入相关联和相应内容时。
any idea how i can iterate through the searchresults? thank you
编辑:
var pressedCount = 0;
if (e.keyCode == 40) { //down
console.log(pressedCount);
$( #searchresults ul li ).index(pressedCount).addClass( selected );
pressedCount++;
}
这并不奏效,因为一米在指数方法上做过错。 然而,每一 trigger倒的触发点都引起压力。