gpt4 book ai didi

jquery - select2 - 动态更改配置

转载 作者:行者123 更新时间:2023-12-05 05:06:12 24 4
gpt4 key购买 nike

如果用户选择了第一个选项,我将尝试动态覆盖 select2 中的 maximumSelectionLength 配置选项,我尝试按如下方式进行...

$(".some-div select").on("select2:open", function(e) {

if(e.target.options[0].selected) {
$(this).select2({
maximumSelectionLength: 1
});
}

});

但它总是给我这个错误Uncaught TypeError: Cannot read property 'query' of null

我该怎么做?

最佳答案

有一种获取项目索引evt.params.data.element.index的 native 方法,所以只需这样做:

$('#example').select2({
maximumSelectionLength: 5
});

$("#example").on("select2:select", function(evt) {
let index = evt.params.data.element.index; // get index
if (index === 0) {
$('#example').select2({ //re-init
maximumSelectionLength: 1
});
}
});

JSFiddle

您可以在 else 上恢复 maximumSelectionLength 的默认值

关于jquery - select2 - 动态更改配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60024417/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com