📅  最后修改于: 2023-12-03 15:22:12.726000             🧑  作者: Mango
在本文中,将会学习到如何使用 JavaScript 更改网站的 Favicon。Favicon 是浏览器标签页左边显示的小图标,也可以显示在书签栏以及浏览器地址栏中。
以下是使用 JavaScript 更改favicon的步骤:
.ico
、.png
或 .gif
格式。const head = document.getElementsByTagName('head')[0];
const link = document.createElement('link');
link.rel = 'shortcut icon';
link.type = 'image/png';
link.href = 'path/to/new-favicon.png';
head.appendChild(link);
以下是示例代码:
const head = document.getElementsByTagName('head')[0];
const link = document.createElement('link');
link.rel = 'shortcut icon';
link.type = 'image/png';
link.href = 'path/to/new-favicon.png';
head.appendChild(link);
本文介绍了如何使用 JavaScript 更改网站的 Favicon。Favicon 可以帮助您的网站在浏览器标签页、书签栏和地址栏中显示。使用这种技术,您可以在需要更改网站图标时,动态地更改 Favicon。