admin管理员组文章数量:1346033
I must be missing something simple but I can't see it. I am using the Bootstrap tagsinput plugin and I am trying to follow some of the examples here: /
Here is my code:
<html>
<head>
<link href=".3.6/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href=".tagsinput/0.4.2/bootstrap-tagsinput.css" />
<script src=".11.1/jquery.min.js"></script>
<script src=".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=".11.3/jquery.min.js"></script>
<script src=".3.6/js/bootstrap.min.js"></script>
<script>
$(function() {
$('#cities').tagsinput({
maxTags: 3
});
});
</script>
</body>
</html>
I am getting the following Javascript error:
tagsinput.html:15 Uncaught TypeError: $(...).tagsinput is not a function
I tried removing data-role="tagsinput"
as suggested in this SO answer but the input bees a regular textbox and the exception still occurs.
What am I doing wrong?
I must be missing something simple but I can't see it. I am using the Bootstrap tagsinput plugin and I am trying to follow some of the examples here: http://bootstrap-tagsinput.github.io/bootstrap-tagsinput/examples/
Here is my code:
<html>
<head>
<link href="https://maxcdn.bootstrapcdn./bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr/bootstrap.tagsinput/0.4.2/bootstrap-tagsinput.css" />
<script src="https://ajax.googleapis./ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr/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./ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn./bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script>
$(function() {
$('#cities').tagsinput({
maxTags: 3
});
});
</script>
</body>
</html>
I am getting the following Javascript error:
tagsinput.html:15 Uncaught TypeError: $(...).tagsinput is not a function
I tried removing data-role="tagsinput"
as suggested in this SO answer but the input bees a regular textbox and the exception still occurs.
What am I doing wrong?
Share Improve this question asked May 14, 2016 at 3:22 acoaco 7393 gold badges10 silver badges26 bronze badges 1- Have you tried reordering your script tags so that jQuery and Bootstrap e before the tagsinput plugin? – SimianAngel Commented May 14, 2016 at 3:27
2 Answers
Reset to default 7you're loading 2 jquery min files in your script
tags.
remove the one after bootstrap-tagsinput.min.js
or since the 2nd one is newer version load that instead of the 1st one.
http://jsbin./xarasebibi/edit?html,output
You duplicated jquery links. one at the top and the other at the bottom. and the bootstrap-tag-min script has to be linked only after you have included jquery link. see below for more info. Hope that helps
<html>
<head>
<link href="https://maxcdn.bootstrapcdn./bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr/bootstrap.tagsinput/0.4.2/bootstrap-tagsinput.css" />
</head>
<body>
<input id="cities" class="form-control" value="New York,London" data-role="tagsinput" type="text">
<script src="https://ajax.googleapis./ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn./bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr/bootstrap.tagsinput/0.4.2/bootstrap-tagsinput.min.js"></script>
<script>
$(function() {
$('#cities').tagsinput({
maxTags: 3
});
});
</script>
</body>
</html>
本文标签: javascript()tagsinput is not a functionStack Overflow
版权声明:本文标题:javascript - $(...).tagsinput is not a function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743824553a2545399.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论