手机
当前位置:查字典教程网 >网页设计 > Div+Css教程 >IE7下父元素及子元素的隐藏顺序不当带来的display:none出现BUG
IE7下父元素及子元素的隐藏顺序不当带来的display:none出现BUG
摘要:IE7下,先隐藏父元素,后隐藏子元素,再显示父元素,被隐藏的子元素重叠区域下面,存在另一个可见的元素,则该display:none的子元素出...

IE 7 下, 先隐藏 父元素,后隐藏子元素,再显示父元素, 被隐藏的子元素 重叠区域下面, 存在另一个可见的元素, 则该 display:none的子元素出现BUG:

背景和图片(img元素,不仅仅是图片背景)仍然显示, 但文字不显示,可以触发鼠标事件。

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<meta http-equiv="X-UA-Compatible" content="IE=Edge" />

<title>test display none</title>

<style>

.gallery{

position: absolute;

top:100px;

left:100px;

padding:10px;

overflow: hidden;

background:#464646;

}

.ad-image{

position: relative;

width:580px;

overflow: hidden;

text-align: center;

}

.ad-image img{

width:100%;

}

.ad-image-groupTip{

position: absolute;

top:50%;

left:50%;

margin-top:-50px;

margin-left: -111px;

width:222px;

height: 100px;

background:none #313131;

z-index:999;

font-size:14px;

}

.ad-image-grouplast{

width:100%;

height:39px;

line-height: 39px;

border-bottom: 1px solid #000;

color:#fff;

}

.ad-image-action{

height:59px;

line-height: 59px;

width:100%;

border-top: 1px solid #555;

color:#39c;

}

.ad-image-groupTip .tipLeft{

float: left;

}

.ad-image-groupTip .tipRight{

float:right;

}

.tipClose{

cursor:pointer;

}

.ad-image-groupTip span{

margin:auto 12px;

}

.ad-image-action span{

cursor:pointer;

vertical-align: middle;

}

.ad-image-action span i{

display:inline-block;

vertical-align: text-top;

width:20px;

height:16px;

*display: inline;

*zoom:1;

*vertical-align: middle;

}

.ad-gallery .imgOperate{

position:absolute;

top: 50px;

left: 6px;

height: 30px;

line-height: 30px;

}

.ad-gallery .imgOperate a{

color:#39c;

cursor:pointer;

}

.ad-image-action .review{

background: url(http://images.cnblogs.com/cnblogs_com/ecalf/431722/o_icons.png) scroll no-repeat 0px 0px;

}

.ad-image-action .goon{

background: url(http://images.cnblogs.com/cnblogs_com/ecalf/431722/o_icons.png) no-repeat scroll 0px -16px;

}

.testBtns{

position: relative;

top:100px;

left:730px;

width:100px;

}

.testBtns button{

width:100px;

height: 30px;

text-align: center;

border:1px solid #313131;

margin-bottom: 10px;

}

</style>

</head>

<body>

<div id="gallery">

<div id="ad-image">

<img src="http://images.cnblogs.com/cnblogs_com/ecalf/431722/o_7_4c135bd08efea.jpg" />

</div>

<div id="groupTip" >

<div>

<span class=tipLeft>已经是最后一张</span>

<span >×</span>

</div>

<div>

<span>

<i></i>重新浏览

</span>

<span>

<i class=goon></i>下一个作品

</span>

</div>

</div>

</div>

<div>

<button id="btn1" data-rel="gallery">triggle gallery</button>

<button id="btn2" data-rel="ad-image">triggle ad-img</button>

<button id="btn3" data-rel="groupTip">triggle tip</button>

<p>IE7先隐藏gallery后隐藏tip,再显示gallery,bug出现</p>

</div>

<script>

document.getElementById("btn1").onclick =

document.getElementById("btn2").onclick =

document.getElementById("btn3").onclick = function(){

var relId = this.getAttribute("data-rel");

var style = document.getElementById(relId).style;

style.display = (style.display=='none')?'':'none';

}

document.getElementById("groupTip").onmouseover = function(){

alert(this.id);

}

</script>

</body>

</html>

【IE7下父元素及子元素的隐藏顺序不当带来的display:none出现BUG】相关文章:

如何利用CSS3制作3D文字效果

css样式命名规范

CSS如何控制网页背景

IE对网页中引入CSS样式表的限制

最近在网页中常用的css和js酷炫动画效果

页面背景图片的拉伸实现代码

div+css垂直居中的五种实现方法

如何使用CSS sprites减少HTTP请求

css cursor 的可选值

CSS DIV实现Yahoo搜索框的制作

精品推荐
分类导航