通常情况下,使用select2只需要在加载相关js和css后,添加如下代码即可:
$("#selectId").select2();
但如果这个select在弹出框中,这样使用往往是无效的,这时候需要这样写:
$.fn.modal.Constructor.prototype.enforceFocus = function () {$("#selectId").select2(); };
参考https://github.com/select2/select2/issues/1436
时间: 2024-09-30 10:10:45