gpt4 book ai didi

php - 谷歌搜索类似文本框

转载 作者:行者123 更新时间:2023-12-01 08:14:38 25 4
gpt4 key购买 nike

我想创建一个像谷歌搜索文本框一样的文本框...

我尝试过的是,当输入一个字符时,使用AJAX,以该单词开头的单词将显示在一个div中,它工作正常,但我希望它应该像谷歌搜索框一样工作。现在箭头键不是仅通过单击文本即可选择

我的代码

<style>
#resultDiv {
width:154px;
position:absolute;
left:121px;
top:30px;
}

p {
padding:0px;
margin:0px;
}
#resultDiv p:hover {
background-color:#999;
}
</style>
<script type="text/javascript">
$(document).ready(function(e) {
$('#resultDiv p').live('click',function(){
var value = $(this).text();
$('#word').val(value);
});
});
</script>

</head>

<body>
<form action="" method="post">
<label>Enter Your Word </label><input type="text" id="word"/>
<div id="resultDiv"></div>
</form>

<script>
// prepare the form when the DOM is ready
$(document).ready(function() {
$('#word').keyup(function(e) {
$.ajax({
type: "POST",
url: "googleDropSearch.php",
data: "word="+this.value,
success: function(msg){
$('#resultDiv').html(msg);
$('#resultDiv').css('border-left','1px solid #ccc').css('border-right','1px solid #ccc').css('border-bottom','1px solid #ccc');
}
});
});
});

</script>

</body>
</html>

操作页面

<?php
$connection = mysql_connect('localhost','root','') or die("ERROR".mysql_error());
$connection = mysql_select_db('ajax',$connection) or die("ERROR".mysql_error());

if(!empty($_POST)):
if(isset($_POST['word']) && $_POST['word'] != ''):
/****************
Sanitize the data
***************/
$key =$_POST['word'];
$query = mysql_query("SELECT county FROM fl_counties WHERE county LIKE '$key%';");

$rows = mysql_num_rows($query);
if($rows != 0):
while($result = mysql_fetch_array($query)):

echo "<p>".$result[0]."</p>";
endwhile;
endif;//rows > 0


endif;//county not sent

endif;


?>

最佳答案

jquery 中有一个有用的插件。

Jquery Autocomplete

有一个简单的演示可用,您只需向其传递一个数组即可。

希望这对您有用。

关于php - 谷歌搜索类似文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11429743/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com