我正在学习如何实现自动建议框,但我不知道如何使用箭头键和回车按钮访问结果。我真的不知道该怎么做。我已经有了它,所以当我点击框时,结果会移动到输入字段,但现在我想用箭头键访问结果,当你点击输入时,它会将该项目移动到输入域。这是我的代码:
<div class="input-wrapper">
<input type="text" class="autosuggest" value="Type in a city or town" onblur="onBlur(this)" onfocus="onFocus(this)" > <input type="submit" value="Search">
<div class="dropdown">
<ul class="result"></ul>
</div>
</div>
和脚本:
$(document).ready(function() {
$('.autosuggest').keyup(function() {
var search_term = $(this).attr('value');
$.post('php/search.php', { search_term: search_term }, function(data) {
$('.result').html(data);
$('.result li').click(function(){
var result_value = $(this).text();
$('.autosuggest').attr('value', result_value);
$('.result').html('');
});
});
});
});
function onBlur(el) {
if (el.value == '') {
el.value = el.defaultValue;
}
}
function onFocus(el) {
if (el.value == el.defaultValue) {
el.value = '';
}
}
$('.autosuggest').keyup(function(e) {
if(e.which == 13) {
// yourcode
}
});