我必须缺少一些简单的东西,但看不到。我正在使用Bootstrap tagsinput插件,并且尝试在此处遵循一些示例:
http://bootstrap-tagsinput.github.io/bootstrap-tagsinput/examples/

这是我的代码:

<html>
  <head>
    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/bootstrap.tagsinput/0.4.2/bootstrap-tagsinput.css" />
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <script src="https://cdn.jsdelivr.net/bootstrap.tagsinput/0.4.2/bootstrap-tagsinput.min.js"></script>
  </head>
  <body>
    <input id="cities" class="form-control" value="New York,London" data-role="tagsinput" type="text">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
    <script>
      $(function() {
        $('#cities').tagsinput({
          maxTags: 3
        });
      });
    </script>
  </body>
</html>

我收到以下Javascript错误:
tagsinput.html:15 Uncaught TypeError: $(...).tagsinput is not a function

我尝试按照this SO answer中的建议删除data-role="tagsinput",但是输入变为常规文本框,并且仍然发生异常。

我究竟做错了什么?

最佳答案

您正在script标记中加载2个jquery min文件。

删除bootstrap-tagsinput.min.js之后的一个,或者因为第二个是较新的版本而不是第一个。

http://jsbin.com/xarasebibi/edit?html,output

09-28 13:25