我正在使用 jquery 插件 Tokeninput。我需要防止用户输入重复值,Js代码如下:
$(document).ready(function () {
// Configure Tags
$('#Tags').tokenInput(tagSource(),
{
prePopulate: selectedTags(),
theme: "facebook",
propertyToSearch: "Code",
preventDuplicates: true
});
function tagSource() {
var data = [];
@if (Model.SourceTags != null && Model.SourceTags.Count() > 0) {
<text>
data = @(Html.Raw(Model.SourceTags));
</text>
}
return data;
}
function selectedTags() {
var selectedData = [];
@if (Model.SelectedTags != null && Model.SelectedTags.Count() > 0) {
<text>
selectedData = @(Html.Raw(Model.SelectedTags));
</text>
}
return selectedData;
}
});
当我再次选择相同的项目时,输入字段中的现有项目会突出显示,并且没有添加任何内容。
此外,当我选择不同的项目时,第一个项目会突出显示,并且没有添加任何内容。
任何想法?
谢谢