gpt4 book ai didi

javascript - Mootools - IE 中的范围问题

转载 作者:太空宇宙 更新时间:2023-11-04 16:30:15 25 4
gpt4 key购买 nike

我开始玩 mootools 但不确定为什么下面的选项会在选择列表中隐藏我的选项,但在 IE 中它不会:

<select id="test_select" multiple>
<option>A</option>
<option>B</option>
<option>C</option>
</select>

$$('#test_select option').each(function(el){
el.addClass('hide');
});

我真的很感激在这方面的一些帮助......

最佳答案

要在选择中隐藏选项,您必须从 IE 中的选择中删除选项。

这里有更详细的解释Hide Option in Select

要从带有 Mootools 的 Select 中删除选项元素,您可以执行以下操作: jsfiddle

$$('#test_select option').each(function(el){
if(el.get("html") == 'A')
el.destroy();
});

关于javascript - Mootools - IE 中的范围问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4794619/

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