我已使用以下HTML代码向我的website添加了一个图标,它出现在所有浏览器中,但Google未显示(https://s2.googleusercontent.com/s2/favicons?alt=p&domain=www.dihav.com)。有什么想法吗?
<link rel="shortcut icon" href="dihav.ico" type="image/x-icon"></link>
答案 0 :(得分:0)
将其命名为“favicon.ico
”。
使用以下代码测试此功能:
<SCRIPT>
<!--
if ((navigator.appVersion.indexOf("MSIE") > 0)
(parseInt(navigator.appVersion) >= 4)) {
var sText = "<U><SPAN STYLE='color:blue;cursor:hand;'";
sText += "onclick='window.external.AddFavorite(location.href,";
sText += "document.title);'>Add this page to your favorites</SPAN></U>";
document.write(sText);
}
//-->
</SCRIPT>
答案 1 :(得分:0)
<link rel="shortcut icon" href="images/Icon/imp_icon.ico">
类型不是必需的。此外,请不要忘记您的图标可能只有16 x 16像素。确实它不会表现出来。
答案 2 :(得分:0)
这个对我有用......在FF中也是如此
<link rel="icon"
type="image/ico"
href="images/logoicon.ico">