Bootstrap Tags输入如何将函数绑定到事件itemAdded和itemRemoved?

时间:2014-01-24 15:33:13

标签: twitter-bootstrap twitter-bootstrap-3 bootstrap-tags-input

没有关于网站上的活动的文档,任何想法?http://timschlechter.github.io/bootstrap-tagsinput/examples/

1 个答案:

答案 0 :(得分:15)

也许作者还没有时间记录它呢? :-)但是,bootstrap-tags会触发两个重要事件:itemAddeditemRemoved

以下是您可以尝试的示例:

标记:

<input type="text" value="Amsterdam,Washington,Sydney,Beijing,Cairo" data-role="tagsinput" placeholder="Add tags" id="tag"/>

事件监听器:

$("#tag").on('itemAdded', function(event) {
    console.log('item added : '+event.item);
});
$("#tag").on('itemRemoved', function(event) {
    console.log('item removed : '+event.item);
});

在这里你继续提问。