2

我有一个 Html 页面,其中包含两个不同的 favicon 引用,我想用第一个覆盖第二个 favicon (favicon2)。IE :

<head>
    <link rel="shortcut icon" href="/assets/images/favicon1.ico" type="image/x-icon" />
        <link rel="shortcut icon" href="/assets/images/favicon2.ico" type="image/x-icon" />
</head>

在 Firefox 中显示 favicon2,但在 Chrome 和 IE 中显示 favicon1,如何让 Chrome 显示 favicon2?

请帮帮我。我被困住了。

提前致谢

4

2 回答 2

0

在文件夹的根目录中添加您的 favicon 并将 url 路径更新为 favicon。

于 2013-07-02T11:15:55.010 回答
0

function myFunction() {
document.getElementById('myIcon').href = "favicon2.ico";
}
<!DOCTYPE html>
<html>

<head>
  <link id="myIcon" rel="shortcut icon" href="favicon1.ico" type="image/x-icon" />
</head>

<body>
  <p>Click the button to change the value of the src attribute of the icon.</p>
  <button onclick="myFunction()">Try it</button>
</body>

</html>

于 2015-01-21T09:42:29.393 回答