tagsinput不能与Bootstrap 3一起使用的基本示例

时间:2015-08-20 05:37:49

标签: jquery bootstrap-tags-input

刚开始使用客户端编程,所以这可能是初学者的错误。我想让examples of the bootstrap tagsinput插件工作。除了使用Backspace无法删除标记中提供的值(例如value =“Amsterdam,Washington”)之外,它们几乎都可以。当我的测试页加载时,它们会显示为标记,但只能通过单击每个标记上的“x”来删除它们。

我通过输入创建的任何新标签,按预期工作(可以通过单击x或退格键删除)。

看起来初始标签最终出现在div元素(类bootstrap-tagsinput)中,除了它们之外,还包含另一个div元素(也就是类bootstrap-tagsinput),这是新的(typed-in)标签被添加。

这与示例的行为不同,其中包含初始标记的所有标记都可以通过命中退格来删除。

screenshot of my test page as shown in the browser

screenshot of the two divs with class bootstrap-tagsinput

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <link href="Content/bootstrap.min.css" rel="stylesheet" />
    <link href="Content/bootstrap-theme.min.css" rel="stylesheet" />
    <link href="Content/bootstrap-tagsinput.css" rel="stylesheet" />
    <script src="Scripts/jquery-1.10.2.min.js"></script>
    <script src="Scripts/bootstrap.min.js"></script>
    <script src="Scripts/bootstrap-tagsinput.js"></script>
    <script src="Scripts/typeahead.bundle.min.js"></script>
    <script src="TagsInputTest.js"></script>
    <style>
        /*.bootstrap-tagsinput {
            width: 100%;
        }*/

        .accordion {
            margin-bottom: -3px;
        }

        .accordion-group {
            border: none;
        }

        .twitter-typeahead .tt-query,
        .twitter-typeahead .tt-hint {
            margin-bottom: 0;
        }

        .twitter-typeahead .tt-hint {
            display: none;
        }

        .tt-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 1000;
            display: none;
            float: left;
            min-width: 160px;
            padding: 5px 0;
            margin: 2px 0 0;
            list-style: none;
            font-size: 14px;
            background-color: #ffffff;
            border: 1px solid #cccccc;
            border: 1px solid rgba(0, 0, 0, 0.15);
            border-radius: 4px;
            -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
            background-clip: padding-box;
        }

        /*.bootstrap-tagsinput {
            width: 100% !important;
        }*/

        .tt-suggestion > p {
            display: block;
            padding: 3px 20px;
            clear: both;
            font-weight: normal;
            line-height: 1.428571429;
            color: #333333;
            white-space: nowrap;
        }

            .tt-suggestion > p:hover,
            .tt-suggestion > p:focus,
            .tt-suggestion.tt-cursor p {
                color: #ffffff;
                text-decoration: none;
                outline: 0;
                background-color: #428bca;
            }
    </style>
</head>
<body>
    <!--<div class="clearfix">&nbsp;</div>-->
    <div class="container">
        <div class="row">
            <h3>select</h3>
            <select multiple data-role="tagsinput">
                <option value="Amsterdam">Amsterdam</option>
                <option value="Washington">Washington</option>
                <option value="Sydney">Sydney</option>
                <option value="Beijing">Beijing</option>
                <option value="Cairo">Cairo</option>
            </select>
            <br />
            <h3>input</h3>
            <input type="text" value="Amsterdam,Washington" data-role="tagsinput" />
        </div>
    </div>
</body>
</html>

$(document).ready(function () {
var citynames = new Bloodhound({
    datumTokenizer: Bloodhound.tokenizers.obj.whitespace,
    queryTokenizer: Bloodhound.tokenizers.whitespace,
    prefetch: {
        url: 'assets/citynames.json',
        filter: function (list) {
            return $.map(list, function (cityname) {
                return { name: cityname };
            });
        }
    }
});
citynames.initialize();

$('input').tagsinput({
    typeaheadjs: {
        name: 'citynames',
        displayKey: 'name',
        valueKey: 'name',
        source: citynames.ttAdapter()
    },
    maxTags: 3
});
});

任何建议都将受到赞赏。

2 个答案:

答案 0 :(得分:0)

我认为您将要做的事情,而不是使用html value属性设置intiial值是使用javascript设置初始值,因此插件可以理解如此对待它们,ex :

$('input').tagsinput({
    typeaheadjs: {
        name: 'citynames',
        displayKey: 'name',
        valueKey: 'name',
        source: citynames.ttAdapter()
    },
    maxTags: 3
});
$('input').tagsinput('add', 'Amsterdam').tagsinput('add', 'Washington');

答案 1 :(得分:0)

我在输入元素中添加了一个唯一ID后,问题(无法删除通过 value 属性添加的标签)消失了。不知道为什么这对我的情况有帮助,因为示例代码不使用唯一ID。它确实从测试页面标记中删除了带有bootstrap-tagsinput类的重复div。