如何查看select2实例的设置选项?

时间:2019-11-25 15:57:58

标签: javascript jquery jquery-select2 jquery-select2-4

我想将选项设置为select2实例,特别是将allowClear选项设置为true或false时。
浏览对象时,我在

中找到了allowClear选项。
  

jQuery ...-> select2->选项->选项,

但是我不知道如何通过代码访问它。

enter image description here

2 个答案:

答案 0 :(得分:0)

您可以这样访问

7

答案 1 :(得分:0)

这是列出设置为select2实例的所有选项的方法

$(selector).data('select2').options.options

我需要allowClear选项,所以我的问题的答案就是这个

$element.data('select2').options.options.allowClear