0

有没有办法让http://alxlit.github.io/bootstrap-chosen/中的“标准选择”和“多项选择”始终打开而不是像下拉菜单一样?谢谢你。

4

1 回答 1

1

在代码中启动插件后,您需要手动将打开的 css 类添加到容器中:

$(".chosen-container").addClass("chosen-with-drop chosen-container-active")

您还需要在源代码中编辑 close 函数以阻止 css 类在插件文件中被删除:

line 696: this.container.removeClass("chosen-container-active");
line 793: this.container.removeClass("chosen-with-drop");

它确实看起来不是最干净或最简单的解决方案,但它很快,查看源代码将使您更深入地了解它的工作原理以及如何编辑它以满足您的要求

于 2013-11-11T13:05:04.560 回答