如何实现stackoverflow标签之类的tages机制?
使用PHP,MySQL和JS.JQUERY
答案 0 :(得分:1)
SO autocomplete tags
相同的功能
这里是下载链接:https://github.com/aehlke/tag-it
这是主页链接:http://aehlke.github.io/tag-it/
以及您可以使用的小型演示代码
<script type="text/javascript">
$(document).ready(function() {
$("#myTags").tagit();
});
</script>
<ul id="myTags">
<!-- Existing list items will be pre-added to the tags -->
<li>javascript</li>
<li>python</li>
<li>haskell</li>
</ul>
见下面的截图
如果需要任何帮助,请告诉我。