我正在使用优秀的chosen
jQuery
插件,并希望将某些选择与其他选项区别开来。
我从外部源(类似于Bootstrap)使用的样式已经使用了所选择的,并以一般方式为所有选择元素设置:
这是他们的代码(在main.js中):
$(document).ready(function(){
$('select').chosen({
disable_search_threshold: 10
});
});
现在我想调整一些特别标记选择的样式。这是我的代码(在my-addons.js中),它在main.js之后加载:
$(document).ready(function () {
$(".chosen-allow-single-deselect").chosen("destroy");
$(".chosen-allow-single-deselect").chosen({
disable_search_threshold: 10,
allow_single_deselect: true
});
});
虽然到目前为止工作正常,但我觉得选择的破坏和娱乐是过度的。
有没有办法在初次创建后更改所选选项?