と があり<input id="#locKeySearch">
ます<div id="#locDropDown">
。フィールドに入力すると、input
AJAX を介して動的ドロップダウンが呼び出されますdiv
。
今、矢印キーからより多くの機能を持ちたいと思います↓</kbd>/↑</kbd>. I want to select my <a>
tags and when they are selected their backgrounds change and on pressing Enter, the browser navigates to the appropriate location.
誰でもこれについて私を助けてもらえますか?
CSS:
div {width:300px;}
a{display:block;}
a:hover{background:#ccc;}
JavaScript:
$(document).ready(function() {
$('#locKeySearch').keydown(function(e)
{<br>
var alinks = $('#locDropDown').find('a');
if(alinks.length > 0)
{
alinks.each(function(){
if (e.keyCode === 40)//Down Arrow
{
e.preventDefault();
var current = alinks.index(),
next = $(this).next();
this.blur();
setTimeout(function() { next.focus().select(); }, 50);
}
});
}
});
});
HTML:
<form>
<input type="text" name="locKeySearch" id="locKeySearch" value="" />
</form>
<div id="locDropDown">
<a href="1">1</a>
<a href="2">2</a>
<a href="3">3</a>
<a href="4">4</a>
<a href="5">5</a>
<a href="6">6</a>
<a href="7">7</a>
<a href="8">8</a>
<a href="9">9</a>
<a href="10">10</a>
</div>