function addOption(select_obj,text,value,n)
{
select_obj.options.add(new Option(text,value))
if (n>0)
{ select_obj.selectedIndex = select_obj.options.length-1}
}
假定select的id为sel1,那么document.getElementById("sel1").options.length=1
这样的话这个select就会只剩下第一项了,然后你再加载新数据即可。
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条)