js中select操作实例
window.onload=function(){ //创建select var select1= document.createElement("select"); select1.id="select1"; for(var i=0;i<5;i++){ //创建option var option=document.createElement("option"); //var option=new option(); option.value=i; option.text="option"+i; //添加option 三选一 select1.add(option); //select1.options.add(option); //select1.appendChild(option); } document.body.appendChild(select1); var index=select1.selectedIndex;//获得选择的option索引 var option_selected=select1.options[select1.selectedIndex];//获得选定的option //插入option select1.options.add(new Option(‘add1‘,‘add1‘)); //移除option 方法二选一 //select1.options.remove(1); select1.remove(1); //清除option 方法二选一 //select1.options.length=0; //select1.length=0; }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。