您好我正在使用此div打开弹出窗口使用jquery.Popup正在每个浏览器中工作。但弹出窗口的关闭图像不会在IE中显示。
这里是div:
<div id="element_to_pop_up2">
<h3>There will be Delay with shipping this week. </h3>
<a class="b-close"><a/>
</div>
这是用于在弹出窗口中显示交叉图像的类:
.b-close
{
background: url("x.png") no-repeat scroll 0 0 transparent;
cursor: pointer;
display: inline;
height: 29px;
left: -18px;
position: absolute;
top: -15px;
width: 25px;
z-index: 3200;
}
x.png图像未在IE中显示。
答案 0 :(得分:6)
/
位于锚标记的错误位置。它应该是</a>
而不是<a/>
答案 1 :(得分:1)
结合之前所说的人(Adrift,Kevin和Vector),标签未正确关闭且css元素应设置为&#34; block&#34;。