IE6下select总是在最上层的解决办法!
IE6下select总是在最上层的解决办法!
Select的遮盖问题
这个问题可是ie6下相当经典的问题了。简单的说就是ie6下select永远在position:absolute的div上面,这个在想用div来做个对话框时经常会遇到。比方下面的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<body>
<div class="down">
<select>
<option>This is a select.</option>
</select>
</div>
<div class="up">This is upper div.</div>
</body>
<style type="text/css" title="">
div{position:absolute;width:180px;height:60px;}
.up{top:0;left:0;background:skyblue;}
.down{top:15px;left:15px;background:yellowgreen;}
</style>
</html>
然后在浏览器中的显示效果如下:
(ie6下的效果) | (其他浏览器) |
|
用iframe覆盖select
在up的div里添加一个iframe,大小至少要能覆盖select。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<body>
<div class="down">
<select>
<option>This is a select.</option>
</select>
</div>
<div class="up">
<iframe></iframe>
<div class="up-inner">This is upper div.</div>
</div>
</body>
<style type="text/css">
div{position:absolute;width:180px;height:60px;}
.up{top:0;left:0;}
.up-inner{background:skyblue;}
.down{top:15px;left:15px;background:yellowgreen;}
.up .up-inner,.up iframe{position:absolute;width:100%;height:100%;top:0;left:0;}
</style>
</html>
值得注意的是,如果iframe的allowTransparency="true"时是不能遮盖住select。这种情况下,如果要透明可以用filter:Aplha(Opacity=?)。
iframe遮盖select是个不错的解决方案,但并不完美。被iframe遮盖的select某种意义上“消失”了。如果将iframe的透明度调低,就会发现,select不在那里。。比方将上例中的up的宽度调低,并加上透明度,超囧的一幕就会出现:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<body>
<div class="down">
<select>
<option>This is a select.</option>
</select>
</div>
<div class="up">
<iframe></iframe>
<div class="up-inner">This is upper div.</div>
</div>
</body>
<style type="text/css" title="">
div{position:absolute;width:120px;height:60px;}
.up{top:0;left:0;filter:alpha(Opacity=80);}
.up-inner{background:skyblue;}
down{top:15px;left:15px;background:yellowgreen;}
up .up-inner,.up iframe{position:absolute;width:100%;height:100%;top:0;left:0;}
</style>
</html>
(另一半select神奇消失)
这个怎么解决我就不知道了,有人知道的话记得告诉我哦~
design_ss- 帖子数 : 122
积分 : 373
威望 : 0
注册日期 : 11-12-28
您在这个论坛的权限:
您不能在这个论坛回复主题
10/09/13, 06:50 am 由 design_ss
» javascript 函数的方法call()和apply()
09/09/13, 05:10 am 由 design_ss
» JS中typeof与instanceof的区别
08/08/13, 11:10 am 由 design_ss
» JS中的构造函数解析
08/08/13, 09:44 am 由 design_ss
» js对象属性方法大总结
08/08/13, 08:46 am 由 design_ss
» js中的值类型和引用类型小结 文字说明与实例
08/08/13, 06:35 am 由 design_ss
» CSS3中轻松实现渐变效果
05/07/13, 09:48 am 由 design_ss
» jQUery 常用实例
03/07/13, 09:56 am 由 design_ss
» mask_layer 遮照
03/07/13, 08:18 am 由 design_ss