gpt4 book ai didi

javascript - 通过javascript向下拉列表添加元素

转载 作者:行者123 更新时间:2023-12-02 07:52:15 26 4
gpt4 key购买 nike

无法通过 Javascript 将元素添加到下拉列表。

以下代码在 IE 和 Chrome 中有效,但在 firefox 中无效。

ddlId.add(new Option("",0));

在 firefox 中,我不断收到“参数不足”异常。关于如何解决它的任何想法?谢谢

最佳答案

try {
ddlId.add(new Option("",0), null); // standards compliant; doesn't work in IE
} catch(ex) {
ddlId.add(new Option("",0)); // IE only
}

关于javascript - 通过javascript向下拉列表添加元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2999312/

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