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

模拟select选择器

时间:2015-04-22 13:12:00      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
<form method="post">

        <div class="selectly" id="s1">
               Select col1...
        </div>
    <select class="select" name="select" id="select" style="opacity:0; filter:alpha(opacity=0);" onchange="s1.innerHTML=this.value">
      <option value="Select col1...">Select col1...</option>
      <option value="1111">1111</option>
      <option value="22222">22222</option>
      <option value="333">333</option>
    </select>
        
        
      </form>
View Code

 

技术分享
*html{ background-image:url(about:blank); background-attachment:fixed; 
/* 解决固定层在IE6下闪的问题 */}
.fixeder{
    width:100%; height:100px;
    position:fixed; clip:rect(0 100% 100% 0); _position:absolute;
    
    /* 底部 */
    left:0px; 
    /*_bottom:expression(document.documentElement.scrollTop+document.documentElement.clientHeight-this.clientHeight);*/
    _top: expression(documentElement.scrollTop + "px"); 
    /*_left:expression(document.documentElement.scrollLeft + document.documentElement.clientWidth - offsetWidth);*/ z-index:999;
}
View Code

 

模拟select选择器

标签:

原文地址:http://www.cnblogs.com/fanxiaowu/p/4447004.html

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