Select2搜索框值在表单提交时发布,即使值不匹配

时间:2018-05-15 06:54:50

标签: asp.net-mvc jquery-select2

问题:

在select2搜索框中搜索后按Enter键,文本框中将填入搜索值(并且表单提交时也会显示相同内容),即使搜索值不匹配。

搜索期间:

enter image description here

按Enter键后:

enter image description here

我正在使用带有剃刀视图的select2(select2.full.js版本Select2 4.0.6-rc.1)。

HTML:

@Html.DropDownListFor(m => m.PartModel.AccountId, Model.PartModel.AccountList, "-- Select --", new { @class = "form-control search select2picker" })

使用Javascript:

$(document).find('.select2picker').select2({
        tags: true,
});

0 个答案:

没有答案