码迷,mamicode.com
首页 > Web开发 > 详细

js中select操作实例

时间:2014-05-23 12:23:36      阅读:439      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

bubuko.com,布布扣
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;
}
bubuko.com,布布扣

 

js中select操作实例,布布扣,bubuko.com

js中select操作实例

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/zspbolg/p/3737341.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!