码迷,mamicode.com
首页 > 其他好文 > 详细

一个select 列子的思考

时间:2014-10-03 19:54:25      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   sp   div   c   

<!DOCTYPE >
<head>
    <title>title</title>
</head>
<body onload="f()">
<select id="s">   
</select>
</body>
<script>
function f(){
    for(var i=0; i<10; i++){
        var option = document.createElement(option)
        // s.insertBefore(option)
        s.add(option)  
        option.innerText = hello + i  //  或者用 option.text 
        option.value = i
    }
    s.selectedIndex = 4  // 这里 select 对象不用 getelementById 获取,可以用id就可以代表了。
}
</script>
</html>

 

一个select 列子的思考

标签:style   blog   color   io   ar   for   sp   div   c   

原文地址:http://www.cnblogs.com/bigdesign/p/select.html

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