我想创建一个搜索框,您可以在其中搜索数据库中的记录。
search.php看起来像这样:
<?php
// connect to mysql
require_once('includes/connect.php');
// include config
include('includes/config.php');
$nameser = $_GET['term'];
$names = array();
$result = mysql_query("SELECT name,customerid FROM customers WHERE name LIKE '%".$nameser."%' ORDER BY name ASC");
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
$row_array['id'] = $row['customerid'];
$row_array['value'] = htmlentities($row['name']);
array_push($names,$row_array);
}
echo json_encode($names);
?>
Javascript部分看起来像这样:
$("#tags").autocomplete({
source: "search.php",
minLength: 2,
select: function(event, ui) {
window.location = ("customers.php?action=view&cid=" + item.id)
//$('#tags').val(ui.item.id);
//return false;
}
})
.data("autocomplete")._renderItem = function( ul, item ) {
return $( "<li></li>" )
.data( "item.autocomplete", item )
.append( "<a href='customers.php?action=view&cid="+ item.id + "'>"+ item.label + "</a>" )
.appendTo( ul );
};
但是,这会产生错误:
ReferenceError: item is not defined
我想要发生的是,当我点击结果列表中的某些内容时,我会被重定向到网址
customers.php?action=view&cid={CustomerID}
有人有个主意吗?
更正有效的Javascript代码:
$("#tags").autocomplete({
source: "search.php",
minLength: 2,
select: function(event, ui) {
window.location = ("customers.php?action=view&cid=" + ui.item.id)
//$('#tags').val(ui.item.id);
//return false;
}
})
.data("autocomplete")._renderItem = function( ul, item ) {
return $( "<li></li>" )
.data( "item.autocomplete", item )
.append( "<a href='customers.php?action=view&cid="+ item.id + "'>"+ item.label + "</a>" )
.appendTo( ul );
};
答案 0 :(得分:3)
我在jsfiddle. you can see it here:
中有一个带有工作示例的演示关键是在autoselect select方法中获取有效的url值。请务必使用console.log ui值,以便查看可供您使用的内容。我能够使用标准的ui.item.value值将用户发送到另一个页面。
测试我的演示:
1。)进入输入框并输入“a”。 2.)选择“http://www.utexas.edu” 3.)将加载新页面。