</select>
<script type="text/javascript">
<!--
var selectid=document.getElementById("selectid")
selectid.options.length=0
selectid[0]=new Option("---- 设置显示0 ----",0)
selectid[1]=new Option("---- 设置显示1 ----",1)
selectid[2]=new Option("---- 设置显示2 ----",2)
//-->
</script>
//---select_obj:要添加的对象;text:显示的文字;value:对应的值;n:是否增加后为选中,大于1是;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}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)