- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个搜索框和几个复选框。选中后,复选框中的值将被推送到搜索框中。
现在我想对插入搜索框中的每个字符串使用引导标签输入,使其看起来像标签,但我在标题中收到错误消息。
我使用标签输入是否错误?
$(document).ready(function () {
$checks = $(":checkbox");
$checks.on('change', function () {
var ingredient = $checks.filter(":checked").map(function (i, v) {
return this.id;
}).get().join(" ");
$('#SearchString').tagsinput(ingredient);
}).trigger('change');
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link href="https://cdn.jsdelivr.net/bootstrap.tagsinput/0.8.0/bootstrap-tagsinput.css" rel="stylesheet" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script src="https://cdn.jsdelivr.net/bootstrap.tagsinput/0.8.0/bootstrap-tagsinput.min.js"></script>
<input class="form-control" id="SearchString" data-role="tagsinput" name="SearchString" type="text" value="">
最佳答案
这是您修改后的代码片段:
$(document).ready(function () {
$checks = $(":checkbox");
$checks.on('change', function () {
$('#SearchString').tagsinput('removeAll');
$checks.filter(":checked").each(function( index ) {
$('#SearchString').tagsinput('add', this.value);
});
}).trigger('change');
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link href="https://cdn.jsdelivr.net/bootstrap.tagsinput/0.8.0/bootstrap-tagsinput.css" rel="stylesheet" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script src="https://cdn.jsdelivr.net/bootstrap.tagsinput/0.8.0/bootstrap-tagsinput.min.js"></script>
<input class="form-control" id="SearchString" data-role="tagsinput" name="SearchString" type="text" value="">
<div class="checkbox">
<label><input id="chk1" type="checkbox" value="ingredient1">ingredient 1</label>
</div>
<div class="checkbox">
<label><input id="chk2" type="checkbox" value="ingredient2">ingredient 2</label>
</div>
<div class="checkbox disabled">
<label><input id="chk3" type="checkbox" value="ingredient3">ingredient 3</label>
</div>
这里提供了一个改进的版本,使用对象而不是纯文本作为标签:https://jsfiddle.net/beaver71/v44mnn31/16/
在此示例中,当删除标签输入中的标签时,相关复选框中的该标签将被取消选中。
关于jquery - 未捕获的 TypeError : $(. ..).tagsinput 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47779971/
我正在使用 jquery.tagsinput,并且希望能够粘贴以逗号或空格分隔的电子邮件地址列表。使用类似的东西 https://github.com/xoxco/jQuery-Tags-Input/
我一定是遗漏了一些简单的东西,但我看不到它。我正在使用 Bootstrap tagsinput 插件,我正在尝试遵循此处的一些示例: http://bootstrap-tagsinput.github
我正在使用 Jquery“tagsinput”让用户在输入字段中创建标签。 我想垂直显示标签而不是内嵌。 此外,当您输入类似“1300x1300”的内容时,输入似乎没有覆盖 100% 的宽度。 我该如
JS var app = angular.module('plunker', ['ngTagsInput']); //'ngTagsInput' app.controller('MainCtrl',
我无法获得默认的 Bootstrap-TagsInput confirmKeys,即 enter = 13 或 comma = 188,开箱即用。无论有没有 Typeahead.js 都是如此.确认键
我刚刚遇到了Bootstrap TagsInput,我正在尝试它,但我似乎无法让它工作。。我在布局的顶部添加了以下内容:。我在布局的底部添加了以下内容:。然后,在我的部分页面中,我添加了以下内容:。下
我的搜索框在这里: 我有一个按钮,用于从搜索框中删除所有标签: Back javascript函数如下: $("#go_back").click(function(){ $('input')
我尝试了 the other post 中建议的解决方案: $("input[name='tags']").tagsinput('input').addClass('form-control'); 但
我有一个搜索框和几个复选框。选中后,复选框中的值将被推送到搜索框中。 现在我想对插入搜索框中的每个字符串使用引导标签输入,使其看起来像标签,但我在标题中收到错误消息。 我使用标签输入是否错误? $(d
我正在尝试使用 Bootstrap Tagsinput在 Bootstrap 3 上使用 Typeahead,使用 Bootstrap-3-Typeahead因为原来的 typeahead 似乎被 T
我是这样使用 tagsinput 的。 但是当我添加标签时,如果标签字符小于或等于 5,它会正确显示标签。如果字符超过 5,它不会显示完整的标签文本,标签末尾也没有叉号。以下是截图 输入 12345
所以我有这个问题。我希望 bootstrap tagsinput 只接受字母、逗号和回车键。如何解决这个问题呢?我使用这个 Bootstrap :https://bootstrap-tagsinput
这是引用 http://timschlechter.github.io/bootstrap-tagsinput/examples/bootstrap3/ 中的“Bootstrap Tagsinput”
我将使用 bootstrap tagsinput 而不添加新标签功能(仅删除标签)。如何禁止添加新标签? 我正在使用最新的 bootstrap tagsinput v0.8.0 和 twitter b
我将使用 bootstrap tagsinput 而不添加新标签功能(仅删除标签)。如何禁止添加新标签? 我正在使用最新的 bootstrap tagsinput v0.8.0 和 twitter b
我有一个标记插件( http://xoxco.com/projects/code/tagsinput/ ),唯一的问题是,我经常将内容加载到同一个 DOM 中 - 因此 .tagsInput() 再次
我正在使用 Bootstrap 标签输入字段。因为我在下面使用 jquery 添加代码成功运行的项目。 $('#tag').tagsinput('add', { "value": 1 , "text"
我在 Angular js 中集成了用于自动完成的 tagsInput。 我已经包含文件 ng-tags-input.min 并在我的 View 中添加了以下代码。 还在
我正在使用其他方面非常出色的 bootstrap-tagsinput在我的应用程序中,但是当我尝试将它与 Bootstrap 3 input-group 组合时,输入组中断。 有办法解决这个问题吗?
编辑:已添加working JSFiddle 我正在使用 Twitter Bootstrap TagsInput 和 Bootstrap Typeahead。我的源是一个 json 文件,但这无关紧要
我是一名优秀的程序员,十分优秀!