Mootools - IE中的范围问题

时间:2011-01-25 14:27:13

标签: javascript html css mootools

我开始玩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');
});

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

1 个答案:

答案 0 :(得分:1)

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

以下是更详细的解释Hide Option in Select

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

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