我正在我的index.html页面中使用。但它用空白替换了我的index.html页面的原始图标。
无法看到index.html的收藏夹图标
如果我注释这个标签,它在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>提前感谢您的回答!
发布于 2014-02-27 01:02:53
在IE中找到,如果我们在IFRAME中指向一个URL,并且它的响应状态不是200,那么它将替换favicon。
因此,请确保您必须从iframe URL获得一些有效响应。
https://stackoverflow.com/questions/21862488
复制相似问题