增加标签输入插件

This commit is contained in:
Anyon 2020-10-21 18:36:35 +08:00
parent aa79134198
commit c4f9b5dea8
4 changed files with 73 additions and 3 deletions

View File

@ -572,6 +572,36 @@ $(function () {
}), this;
};
/*! 标签输入插件 */
$.fn.initTagInput = function () {
return this.each(function () {
var $this = $(this), tags = this.value ? this.value.split(',') : [], $box = $('<div class="layui-tags"></div>');
var $text = $('<textarea class="layui-input layui-input-inline layui-tag-input" style="width:100px"></textarea>');
$this.parent().append($box.append($text)), $text.off('keydown blur'), (tags.length > 0 && showTags(tags));
$text.on('keydown blur', function (event, value) {
if (event.keyCode === 13 || event.type === 'blur') {
event.preventDefault(), (value = $text.val());
if (tags.indexOf($(this).val()) > -1) {
layer.msg('该标签已存在')
} else if ((value + '').replace(/\s+/g, '').length > 0) {
tags.push(value), $this.val(tags.join(','));
showTags([value]), this.focus(), $text.val('');
}
}
});
function showTags(tagsArr) {
$(tagsArr).each(function (idx, text, element) {
element = $('<div class="layui-tag"></div>').html(text + '<i class="layui-icon">&#x1006;</i>');
element.on('click', 'i', function (tagText, tagIndex) {
tagText = $(this).parent().text(), tagIndex = tags.indexOf(tagText);
tags.splice(tagIndex, 1), $(this).parent().remove(), $this.val(tags.join(','));
}), $box.append(element), $box.append($text);
});
}
});
};
/*! 注册 data-load 事件行为 */
$body.on('click', '[data-load]', function () {
var url = this.dataset.load, tips = this.dataset.tips, time = this.dataset.time;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -440,3 +440,43 @@ label.think-radio, label.think-checkbox {
line-height: 24px !important
}
}
.layui-tags {
display: flex;
flex-wrap: wrap;
vertical-align: middle;
.layui-tag {
color: #FFF;
height: 38px;
margin: 3px 4px 3px 0;
display: inline-block;
background: #1E9FFF !important;
font-size: 14px;
white-space: normal;
line-height: 38px;
padding: 0 4px 0 10px;
border-radius: 2px;
user-select: none;
-ms-user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
.layui-icon {
font-size: 14px;
font-weight: 700;
margin-left: 5px;
&:hover {
cursor: pointer;
color: #FF5722;
}
}
&-input {
resize: none;
margin: 3px 8px 3px 0;
overflow: hidden;
}
}
}