JQuery 插件 chosen.jquery.min.js

东门楚
2023-12-01

导入的文件

    chosen.css、 chosen.jquery.min.js、jquery.js

html:

  <select class="chosen-select" id="form-field-select" data-placeholder="Choose a State...">

  </select>

js代码:

 $("#form-field-select").html(data);                     //data为ajax返回的字符串(<option value=""></option>)

$("#form-field-select").trigger("liszt:updated");    //数据的动态设置
$('.chosen-select').chosen({allow_single_deselect:true}).change(function(){alert("ddd");});      //chosen()使用jquery插件,change()事件当选中项改变时触发

转载于:https://www.cnblogs.com/yjjj/p/4301818.html

 类似资料: