首页 > 代码库 > js中select操作实例
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=http://www.mamicode.com/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; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。