使用jquery Auto建议选择框

时间:2013-05-02 19:00:46

标签: jquery html

我想要一个选择框,用户可以通过点击来手动选择选项,就像他能够输入该选择框一样(自动建议)。

提前致谢, Sowmya。

1 个答案:

答案 0 :(得分:0)

一个。你的意思是jQueryUI自动完成? http://jqueryui.com/autocomplete/

var availableTags = [
      "ActionScript",
      "AppleScript",
    ];
    $( "#tags" ).autocomplete({
      source: availableTags
    });

B中。或者你的意思是标记输入http://xoxco.com/projects/code/tagsinput/
C.您在评论中想要的内容:http://harvesthq.github.io/chosen/