我在ASP.NET项目中第一次使用select2插件。我遇到一个问题,从下拉列表中选择项目后,文本框失去焦点。 我厌倦了这段代码,但它无法正常工作。请帮我。
$(function () {
//Initialize Select2 Elements
$('.select2').select2(
{
onSelect: function ()
{
this.focus();
}
}
)
});
答案 0 :(得分:0)
我在https://github.com/select2/select2/issues/4384#issuecomment-228464364找到了答案。这对我有用。
$('select').on(
'select2:close',
function () {
$(this).focus();
}
);
谢谢!