Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/84.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 内部图像未显示在IE浏览器中?_Jquery_Html_Css_Internet Explorer_Jquery Plugins - Fatal编程技术网

Jquery 内部图像未显示在IE浏览器中?

Jquery 内部图像未显示在IE浏览器中?,jquery,html,css,internet-explorer,jquery-plugins,Jquery,Html,Css,Internet Explorer,Jquery Plugins,嗨,我正在使用这个div使用jquery打开弹出窗口。弹出窗口在每个浏览器中都工作。但弹出窗口的关闭图像并没有显示在IE中 以下是分区: <div id="element_to_pop_up2"> <h3>There will be Delay with shipping this week. </h3> <a class="b-close"><a/> </div> x、 png图像未显示在IE中。锚定标记上的/位

嗨,我正在使用这个div使用jquery打开弹出窗口。弹出窗口在每个浏览器中都工作。但弹出窗口的关闭图像并没有显示在IE中

以下是分区:

 <div id="element_to_pop_up2">
 <h3>There will be Delay with shipping this week. </h3>
 <a class="b-close"><a/>
 </div>

x、 png图像未显示在IE中。

锚定标记上的/位置错误。它不应该将之前大家所说的“漂浮”、“Kevin”和“Vector”结合在一起,标签没有正确关闭,css元素应该设置为block。

你的锚标签没有关闭。谢谢Kevin的帮助。哦,是的,真的错过了。Thanks@user2397462但这能解决问题吗?
.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;
}