0

是的,这很奇怪,我不知道为什么会这样,但我正在做的是我有一个搜索字段,用户在其中输入一个名称,我希望它显示建议,现在这是有效的,但是当用户使用对象应突出显示的箭头键(向上或向下),基本上就像具有不同设计的标准自动完成。

问题是高亮位,当我按下向下箭头时,只要我按住箭头键,对象就会高亮,但它不会保持高亮。我不知道为什么,我已经在下面发布了相关代码,希望有人可以帮助:

主文件(文本字段):

<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> &nbsp; <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() 来阻止它,有人知道为什么会这样吗?

4

1 回答 1

1

您对执行 ajax 请求的箭头键是正确的。您已e.preventDefault在 keydown 功能中使用过,但未在 keyup 功能中使用过。onkeyup我建议您将其放在 keydown 函数的正下方,而不是属性:

$("#search_field").keyup(function(e) {
    if (e.keyCode < 41 && e.keyCode > 36) {
        suggestions(this.val());
    }
});

那应该出来了。

于 2012-05-31T14:50:00.633 回答