var op=document.createElement("option") //新建option
op.setAttribute("value",0) // 设置value
op.appendChild(document.createTextNode("请选择---")) //text
sel.appendChild(op) // 为select添加option
这样就可以给select添加option了
1、使用innerHTML
<script>var shosetype=document.createElement("select") //创建select标签
shosetype.setAttribute("id","sc")//设置select的id为“sc"
document.body.appendChild(shosetype)//将select添加到body
var option="<option value=\"1\">添加成功</option>"//新建options
shosetype.innerHTML=option//将option添加到select
</script>
2、options.add
//根据select查找对象,var obj=document.getElementById('mySelect') //获取到id为'mySelect'的select元素
//添加一个选项
obj.add(new Option("文本","值")) //添加select的options 这个只能在IE中有效
obj.options.add(new Option("text","value")) //添加select的options 这个兼容IE与firefox
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)