“query function not defined for Select2 undefined error”

前端 未结 13 1529
名媛妹妹
名媛妹妹 2020-11-28 04:22

Trying to use Select2 and getting this error on multiple item input/text field:

\"query function not defined for Select2 undefined error\"
13条回答
  •  -上瘾入骨i
    2020-11-28 05:11

    I also got the same error when using ajax with a textbox then i solve it by remove class select2 of textbox and setup select2 by id like:

    $(function(){
      $("#input-select2").select2();
    });
    

提交回复
热议问题