我按照 W3Schools 教程进行 AJAX 实时搜索,它运行良好。我将 AJAX 结果作为锚元素返回。
我想为 Ajax 下拉菜单添加键盘导航(即向上箭头和向下箭头),我最好的结果是将焦点放在仅停留一秒钟的第一个结果上,然后焦点消失。我想知道为什么这个焦点会消失,以及任何绕过它的方法。
我的 JavaScript 代码:
<script type="text/javascript">
$(document).ready(function(){
$('#searchInput').keyup(function(e){
var keyCode = e.keyCode || e.which;
if (keyCode == 40){
$('.hint').first().focus();
$('.hint').first().css('color','#E8AE00'); //I can get the focus to here, but the focus will disappear right away.
}
})
})
</script>
这是我的 PHP 代码:
<?php
$q = $_GET["q"];
$xmlDoc = new DOMDocument();
$xmlDoc -> load("database.xml");
$rest = $xmlDoc -> getElementsByTagName('restaurant');
if (strlen($q)>0){
$hint[] = "";
$index = 0;
for ($i = 0; $i < ($rest->length); $i++){
$name = $rest -> item($i) -> getElementsByTagName('name');
$link = $rest -> item($i) -> getElementsByTagName('link');
if ($name -> item(0) -> nodeType == 1){
if (strtolower($q) == strtolower(substr($name -> item(0) -> childNodes -> item(0) -> nodeValue,0,strlen($q)))){ //if matching
$hint[$index] = "<a class='hint' id='hint".$index."' href='".$link -> item(0) -> childNodes -> item(0) -> nodeValue."' onfocus=\"this.style.color='#E8AE00'\">".substr($name -> item(0) -> childNodes -> item(0) -> nodeValue,0,strlen($q))."<b>".substr($name -> item(0) -> childNodes -> item(0) -> nodeValue,strlen($q))."</b></a><br />";
$index++;
}
}
}
}
if ($hint[0] == ""){
echo "no suggestion";
}
else {
for ($j = 0; $j < (count($hint)); $j++){
echo $hint[$j];
}
}
?>
谢谢。