firefox下可以动态添加select的option吗?var opt = document.createElement("option"); opt.text = "文本"; opt.value = "值";document.getElementById("mySelectId").add(opt);以上脚本在IE下可以,在firefox下不提示错误,也没效果
还是不行
可以动态添加,试试document.getElementById(\"mySelectId\").appendChild(opt);