js实现select动态添加option,默认为选中状态
var JYPMObj = document.getElementById("selectedJYPM");
if(strValue != "") {
if(!optionIsZT(strValue, JYPMObj)) {
var oOption = document.createElement("OPTION");
oOption.text=strLabel;//设置key
oOption.value=strValue;//设置value
oOption.selected = true;//设置选中状态
JYPMObj.add(oOption);
}
}
文档来源:51CTO技术博客https://blog.51cto.com/u_15295225/3025758
页:
[1]