使用IFRAME的IE-9 Favicon问题

时间:2014-02-18 18:34:02

标签: html iframe tags favicon

我正在使用< iframe>在我的index.html页面中。但是它将我的index.html页面的原始图标替换为空白。

无法看到index.html的favicon

如果正在评论标签,它在IE9中正常工作。

<html>
<head>
<title>Some Title</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>

<body>
 <iframe src="http://somesite.com/"></iframe> <!-- Not Working Unable to see favicon -->

 <!-- <iframe src="http://somesite.com/"></iframe> -->    <!-- Working I can see favicon -->
</body>
</html>

提前感谢您的回答!!!

1 个答案:

答案 0 :(得分:1)

如果我们指向IFRAME中的URL并且其响应状态不是200,那么在IE中找到它将替换favicon。

所以请确保您必须从iframe网址获得一些有效的回复。