是的,这很奇怪,我不知道为什么会这样,但我正在做的是我有一个搜索字段,用户输入一个名字,我希望它显示建议,现在这是有效的,但是当用户使用箭头键(向上或向下)对象应该是黄昏,基本上就像标准的自动完成只是设计不同。
问题是高亮的位,当我按下向下箭头时,只要我按住箭头键,对象就会被点亮,但它不会保持高亮。我无法弄清楚为什么,我已经在下面发布了相关代码,希望有人可以提供帮助:
主文件(textfield):
<div style="position: relative; top: 0px; left: -51px; width: 200px;">
<form method="GET" action="" style="padding: 0px; padding-right: 10px; margin: 0px;">
<input type="text" id="search_field" onkeyup="javascript: suggestions(this.value);" autocomplete="off" style="border: 0px solid #ffffff; width: 250px; padding-left: 20px; color: #ffffff; height: 30px; border-bottom: 1px solid #333333; background: #222222;" name="q" placeholder="Search MVDb">
</form>
<div style="position: absolute; left: 2px; top: 8px;">
<img height="15" src="img/search.png">
</div>
</div>
<div id="result" style="z-index: 100; position: absolute; cursor: pointer; top: 86px; right: 5px; width: 251px; background: #eeeeee;">
</div>
带有id结果的div是建议加载到的地方。
主文件(jquery / js):
function suggestions(value){
$.ajax({
url: 'get_suggestion.php?q='+value,
success: function(data) {
$('#result').html(data);
}
});
}
$(document).ready(function() {
$("#search_field").keydown(function(e) {
if (e.keyCode == 40) {
//DOWN
document.getElementById('search_result_0').style.background = "#333333";
e.preventDefault();
return false;
}
else if (e.keyCode == 38) {
//UP
e.preventDefault();
return false;
}
});
});
get_suggestion.php:
<?php
include 'js/db/db.php';
$value = $_GET["q"];
if($value==""){
}
else{
$value = trim($value);
$query="select * from movies where title like \"%$value%\" LIMIT 6";
$rt=mysql_query($query);
echo mysql_error();
$counter = -1;
while($nt=mysql_fetch_array($rt)){
$counter = $counter+1;
?>
<div id="search_result_<?php echo $counter ?>" cellspacing="0" cellpadding="0" onClick="window.location = 'movie.php?movie=<?php echo $nt['title']?>'" width="100%" style="color: #333333; cursor: pointer;">
<table cellspacing="0" cellpadding="0">
<tr valign="top">
<td style="padding: 5px; width: 30px;">
<img height="60" src="http://210.177.0.75/mvdb/img/covers/<?php echo $nt['title'] ?>.jpg">
</td>
<td align="left" style="padding: 5px;">
<?php
$title = substr($nt[title], 0, 17);
if($title == $nt[title]){
}
else{
$title = $title."...";
}
?>
<font style="font-family: Arial; font-size: 15px; font-weight: bold;"><?php echo $title ?></font> <img src="img/age/BBFC <?php echo $nt['bbfc_age'] ?>_small.png"><br>
<font style="font-family: Arial; font-size: 12px; color: #aaaaaa;">Tom Cruise, Michelle Monaga</font>
<font style="font-family: Arial; font-size: 12px; color: #aaaaaa;">Released: 4 May 2006</font>
</td>
</tr>
</table>
</div>
<?php
}
}
?>
我尽可能地尝试格式化代码。我认为可能是当用户按下箭头键时ajax请求被触发但这没有任何意义,因为我使用e.preventDefault()来阻止它,有没有人知道为什么会发生这种情况?
答案 0 :(得分:1)
你正确执行ajax请求的箭头键。您在keydown函数中使用了e.preventDefault
,但在keyup函数中没有使用onkeyup
。我建议你把它放在你的keydown函数下面,而不是$("#search_field").keyup(function(e) {
if (e.keyCode < 41 && e.keyCode > 36) {
suggestions(this.val());
}
});
属性:
{{1}}
应该这样。