问题:
在select2搜索框中搜索后按Enter键,文本框中将填入搜索值(并且表单提交时也会显示相同内容),即使搜索值不匹配。
搜索期间:
按Enter键后:
我正在使用带有剃刀视图的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,
});