我使用自動從該網站提示的jQuery插件:多標籤建議的jQuery插件
http://code.drewwilson.com/entry/autosuggest-jquery-plugin
製作標籤多個像在該網站給出。
但我的問題是... 從autosuggest中選擇時,它顯示在我的輸入框中,但我不想再次顯示選定的autosuggest,就像鏈接中給出的示例一樣....但我我不能做這種事情......
請幫我......被我用來 代碼如下:
<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>
阿賈克斯文件中像
<?
$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);
?>
我得到了解決方案,它工作正常... – 2012-07-26 06:00:16