我正在使用jQuery tagit ..
在右上角有一个小关闭按钮,用于删除标签。
我现在的问题是,有没有可能的方法来删除标签而不是点击它们?
答案 0 :(得分:2)
首先,从close元素中删除'x':转到487. line of tagit.js,并删除x,如下所示:
+ '<div class="tagit-label">' + newTag.label + '</div>' + '<a class="tagit-close"> </a></li>');
然后,在您正在使用的主题的css文件中,修改tagit-close类:
对于简单的蓝色主题,例如TAG-IT-简单blue.css:
ul.tagit li.tagit-choice a.tagit-close {
/* color: #777777;
cursor: pointer;
font-size: 12px;
font-weight: bold;
outline: medium none;
padding: 2px 0 2px 3px;
text-decoration: none;
top: 0;
right: 3px;
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);*/
width:100%;
height:100%;
top:0;
left:0;
cursor: pointer;
position: absolute;
display: block;
}