我使用来自该站点的自动建议 jQuery 插件:
http://code.drewwilson.com/entry/autosuggest-jquery-plugin
用于制作多个标签,就像在该网站中给予一样。
但我的问题是......从自动建议中选择时,它显示在我的输入框中,但我不想再次显示选定的自动建议,如链接中给出的示例......但我无法这样做事物...
请帮助我...我使用的代码如下:
<link rel="stylesheet" type="text/css" href="view/stylesheet/autoSuggest.css">
<script type="text/javascript" src="view/javascript/jquery/jquery.autoSuggest.js"></script>
<script type="text/javascript"><!--
$("#product_tag1").autoSuggest("http://test.com/ajax", {minChars: 2, matchCase: true,selectedItemProp: "tag", searchObjProps: "tag"});
//--></script>
Ajax 文件之类的
<?
$input = $_GET["q"];
$data = array();
$query = mysql_query("SELECT * FROM my_table WHERE my_field LIKE '%$input%'");
while ($row = mysql_fetch_assoc($query)) {
$json = array();
$json['tag_id'] = $row['id'];
$json['tag'] = $row['tag'];
$data[] = $json;
}
header("Content-type: application/json");
echo json_encode($data);
?>