select2控件动态更新option
生活随笔
收集整理的這篇文章主要介紹了
select2控件动态更新option
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
原文連接:https://blog.csdn.net/u010784959/article/details/77893674
-----------------------------------------------------------------------------
根據(jù)輸入框中內(nèi)容,動(dòng)態(tài)更新select2組件中option內(nèi)容
監(jiān)聽輸入框內(nèi)容變化事件,先銷毀原有select2組件,再重新初始化select2組件
關(guān)鍵代碼:
<div><input id="name" class='form-control' style='width:200px'/><select class="select2" id="id1" style="width:50%"></select> </div>js代碼:
$(function () {var $select = $('#id1');var instance;$("#name").on('input', function(){var data = [];var content = $("#name").val();var arr = content.split(",");for(var i=0;i<arr.length;i++){data.push({id:'' + i, text:arr[i]});}instance = $select.data('select2');if(instance){$select.select2('destroy').empty();}$('#id1').select2({ dropdownAutoWidth: true,multiple: true,data: data});}); });jQuery、bootstrap及select2關(guān)鍵文件引入此處忽略,需另外自行引入
總結(jié)
以上是生活随笔為你收集整理的select2控件动态更新option的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 项目经理到底要不要懂技术?
- 下一篇: Vue.js 概述与 MVVM 模式