`
wangzi6hao
  • 浏览: 213023 次
  • 性别: Icon_minigender_1
  • 来自: sdf
社区版块
存档分类
最新评论

[Exception... "Not enough arguments [nsIDOMHTMLSelectElement.add]"

 
阅读更多

[Exception... "Not enough arguments [nsIDOMHTMLSelectElement.add]" nsresult: "0x80570001 (NS_ERROR_XPC_NOT_ENOUGH_ARGS)" lo+
关于select添加<option>元素时,出现[Exception... "Not enough arguments [nsIDOMHTMLSelectElement.add]" nsresult: "0x80570001 (NS_ERROR_XPC_NOT_ENOUGH_ARGS)" lo错误

opt=document.createElement("OPTION");
            opt.value=subArray[1];
            opt.text=subArray[2];
            document.getElementById("xxx").add(opt);

 这样写不符合w3c标准。
所以document.getElementById("xxx").options.add(opt);
这样写,就正常了。

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics