firefox下可以動態(tài)添加select的option嗎?var opt = document.createElement("option"); opt.text = "文本"; opt.value = "值";document.getElementById("mySelectId").add(opt);以上腳本在IE下可以,在firefox下不提示錯誤,也沒效果
還是不行
可以動態(tài)添加,試試document.getElementById(\"mySelectId\").appendChild(opt);