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
在<s:select>标签中加入onchange事件处理改变选项事件<s:select onchange="selected(this.value)"/>
function selected(value){
alert(value)
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)