我有这个Tag-it插件并且运行时只有一个我必须纠正的缺陷。
当鼠标进入输入字段时,即使使用showAutocompleteOnFocus:true,
属性,它也不会显示标记列表。
到目前为止,我有这段代码
<script type="text/javascript">
$(document).ready(function() {
$("#categories").tagit({
fieldName: "categories[]",
availableTags: <?php echo $categories; ?>,
showAutocompleteOnFocus:true,
allowSpaces:true
});
});
</script>
<ul id="categories"><ul>
“类别”回显会像这样呈现
["Categoria","Categoria 2","Categoria 3","Promoção"]
非常感谢任何帮助!
提前致谢!