gpt4 book ai didi

jquery - 使用所选插件时禁用组

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

我需要的是,如果用户选择值为 0 的选项,则禁用选择中的整个组,或者如果我无法使用组禁用我想要的所有选项,这可能吗?

我已经尝试过这样的:

$('#ottipo_alcance').chosen().change(function(event){
if (this.value == '0')
$('optgroup option').prop('disabled', true);
else
$('optgroup option').prop('disabled', false);
$('#ottipo_alcance').trigger("liszt:updated");
});

<select id="ottipo_alcance" name="ottipo_alcance[]" class="chosen" style="width:200px" multiple="true">
<option value="0">General</option>
<optgroup label="Áreas">
<option value="1">Sistemas</option>
<option value="2">Operaciones</option>
...
</optgroup>
</select>

注意:我也尝试过 $('#ottipo_alcance').trigger("chosen:updated");

最佳答案

您应该能够使用以下方法禁用整个 optgroup:

$('#ottipo_alcance').find('optgroup:first').prop('disabled', true);

关于jquery - 使用所选插件时禁用组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20324880/

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