删除" x"在bootstrap tagsinput中

时间:2017-09-26 02:03:50

标签: javascript jquery css twitter-bootstrap bootstrap-tags-input

所以我有这个问题。我想删除" x"在bootstrap tagsinput中。这是我使用的引导程序:https://bootstrap-tagsinput.github.io/bootstrap-tagsinput/examples/ 如何删除" x"按钮?我不想影响其他页面" x"已移除。基本上,有一个页面" x"按钮应该被删除,还有另一个页面" x"不应该删除。如何解决这个问题呢?谢谢

1 个答案:

答案 0 :(得分:2)

将以下CSS添加到您要删除的页面" x"从

    .bootstrap-tagsinput .tag [data-role="remove"]:after {
       content: "";
       padding: 0px 2px;
    }

希望它有所帮助。

以下是演示https://jsfiddle.net/3gth/7m3zwLos/

的链接