动态更改网站图标

Changing website favicon dynamically

提问人:SqlRyan 提问时间:11/4/2008 最后编辑:Martijn PietersSqlRyan 更新时间:1/16/2023 访问量:300763

问:

我有一个 Web 应用程序,它根据当前登录的用户进行标记。我想将页面的网站图标更改为自有品牌的徽标,但我无法找到任何代码或任何示例来执行此操作。以前有人成功做到这一点吗?

我想象一个文件夹中有十几个图标,并且对要使用的 favicon.ico 文件的引用只是与 HTML 页面一起动态生成的。思潮?

JavaScript HTML DOM 图标

评论

61赞 Corey Trager 11/4/2008
网站图标中有一个街机游戏
19赞 Basil 6/1/2016
街机游戏的链接已更改。这是正确的。
0赞 handle 8/20/2016
请参阅 stackoverflow.com/questions/6296574/...,了解如何通过使用画布在模板图像上绘图来动态更新网站图标。
2赞 Goran W 4/21/2017
接受的答案中提供的代码示例中的小错误。我没有足够的声誉分数来评论答案,因此写在这里。最后一行交换了括号:}());应改为 })();代码示例更新会很好,因为它很可能是由其他人复制和粘贴的。
4赞 Clément 10/5/2017
@CoreyTrager 网址已更改:p01.org/defender_of_the_favicon

答:

13赞 Jeff Sheldon 11/4/2008 #1

网站图标在 head 标签中声明如下:

<link rel="shortcut icon" type="image/ico" href="favicon.ico">

您应该能够在视图数据中传递所需的图标名称并将其放入 head 标签中。

评论

1赞 Matthew Schinckel 11/4/2008
但是,IIRC某些浏览器(我正在朝您的方向看,IE)有时并不真正尊重这一点。
0赞 Matthew Schinckel 11/4/2008
(我发现只要将图标文件放在正确的位置,而不是显式链接,我就能得到更好的结果)。
577赞 keparo 11/4/2008 #2

为什么不呢?

var link = document.querySelector("link[rel~='icon']");
if (!link) {
    link = document.createElement('link');
    link.rel = 'icon';
    document.head.appendChild(link);
}
link.href = 'https://stackoverflow.com/favicon.ico';

评论

2赞 SqlRyan 11/4/2008
我认为这与我正在寻找的内容很接近,但是我如何从数据库中获取适当的 HREF。我想我必须从 javascript 进行服务器查找,但我不希望它变得太复杂。谢谢你的提示。
40赞 Mathias Bynens 6/7/2010
由于这在 IE 中无论如何都不起作用,因此您可以从属性中删除。快捷方式是无效的 IE 专有链接关系!shortcutrel
9赞 keparo 4/1/2011
您可以轻松地查找现有的网站图标链接并对其进行更新或替换。
8赞 kirb 10/3/2011
Google 可以使用以下网址为您提供网站图标,将 stackoverflow.com 替换为您想要的域名:s2.googleusercontent.com/s2/favicons?domain=stackoverflow.com
7赞 powerj1984 5/25/2013
在 Chrome 的 Javascript 控制台中输入它应该有效吗?我无法让它以这种方式更改各个网站上的图标。
56赞 fserb 11/4/2008 #3

如果您有以下 HTML 代码段:

<link id="favicon" rel="shortcut icon" type="image/png" href="favicon.png" />

例如,您可以通过更改此链接上的 HREF 元素来使用 Javascript 更改网站图标(假设您使用的是 JQuery):

$("#favicon").attr("href","favicon2.png");

您还可以创建一个 Canvas 元素并将 HREF 设置为画布的 ToDataURL(),就像 Favicon Defender 一样。

评论

2赞 cHao 7/13/2012
我认为当JS运行时,浏览器已经看到了链接并尝试加载。这可能需要在服务器端完成。favicon.png
2赞 johannchopin 4/22/2020
如果你不使用 JQuery,你可以更改使用 也许你可以将其添加到您的帖子@fserb?href#favicondocument.getElementById('favicon').setAttribute('href','favicon2.png')
2赞 staticsan 11/4/2008 #4

根据 WikiPedia 的说法,您可以使用该部分中的标签指定要加载的网站图标文件,参数为 .linkheadrel="icon"

例如:

 <link rel="icon" type="image/png" href="/path/image.png">

我想,如果您想为该调用编写一些动态内容,您将可以访问 cookie,以便您可以以这种方式检索会话信息并呈现适当的内容。

您可能会对文件格式感到不满(据报道,IE 仅支持它的 .ICO格式,而大多数其他人都支持PNG和GIF图像)以及可能的缓存问题,无论是在浏览器上还是通过代理。这是因为 favicon 的原始用途,特别是用于用网站的迷你徽标标记书签。

评论

0赞 MemeDeveloper 7/25/2017
远不止于此。stackoverflow.com/a/45301651/661584 生成器网站上的常见问题解答/信息会让您大吃一惊 - 这个主题有很多内容。
3赞 staticsan 7/26/2017
网络在 9 年内发生了很大变化。
9赞 cryo 5/27/2010 #5

以下是我用来为 Opera、Firefox 和 Chrome 添加动态图标支持的一些代码。不过,我无法让IE或Safari工作。基本上,Chrome允许动态网站图标,但据我所知,它只会在页面的位置(或其中的等)发生变化时更新它们:iframe

var IE = navigator.userAgent.indexOf("MSIE")!=-1
var favicon = {
    change: function(iconURL) {
        if (arguments.length == 2) {
            document.title = optionalDocTitle}
        this.addLink(iconURL, "icon")
        this.addLink(iconURL, "shortcut icon")

        // Google Chrome HACK - whenever an IFrame changes location 
        // (even to about:blank), it updates the favicon for some reason
        // It doesn't work on Safari at all though :-(
        if (!IE) { // Disable the IE "click" sound
            if (!window.__IFrame) {
                __IFrame = document.createElement('iframe')
                var s = __IFrame.style
                s.height = s.width = s.left = s.top = s.border = 0
                s.position = 'absolute'
                s.visibility = 'hidden'
                document.body.appendChild(__IFrame)}
            __IFrame.src = 'about:blank'}},

    addLink: function(iconURL, relValue) {
        var link = document.createElement("link")
        link.type = "image/x-icon"
        link.rel = relValue
        link.href = iconURL
        this.removeLinkIfExists(relValue)
        this.docHead.appendChild(link)},

    removeLinkIfExists: function(relValue) {
        var links = this.docHead.getElementsByTagName("link");
        for (var i=0; i<links.length; i++) {
            var link = links[i]
            if (link.type == "image/x-icon" && link.rel == relValue) {
                this.docHead.removeChild(link)
                return}}}, // Assuming only one match at most.

    docHead: document.getElementsByTagName("head")[0]}

要更改网站图标,只需使用上述方法即可。favicon.change("ICON URL")

(感谢 http://softwareas.com/dynamic-favicons 提供我基于此的代码。

评论

0赞 josh3736 4/29/2011
Chrome 错误已在 Chrome 6(9 月 10 日发布)中修复,因此 Chrome hack 不再需要了——事实上,我强烈建议不要使用它,因为它会破坏前进按钮。
0赞 danorton 10/8/2011
Chrome 仍然有相同的错误,尽管情况与所记录的特定错误略有不同。code.google.com/p/chromium/issues/detail?id=99549
105赞 Mathias Bynens 6/8/2010 #6

以下是一些适用于 Firefox、Opera 和 Chrome 的代码(与此处发布的所有其他答案不同)。下面是一个在 IE11 中也适用的不同代码演示。以下示例在 Safari 或 Internet Explorer 中可能不起作用。

/*!
 * Dynamically changing favicons with JavaScript
 * Works in all A-grade browsers except Safari and Internet Explorer
 * Demo: http://mathiasbynens.be/demo/dynamic-favicons
 */

// HTML5™, baby! http://mathiasbynens.be/notes/document-head
document.head = document.head || document.getElementsByTagName('head')[0];

function changeFavicon(src) {
 var link = document.createElement('link'),
     oldLink = document.getElementById('dynamic-favicon');
 link.id = 'dynamic-favicon';
 link.rel = 'shortcut icon';
 link.href = src;
 if (oldLink) {
  document.head.removeChild(oldLink);
 }
 document.head.appendChild(link);
}

然后,您将按如下方式使用它:

var btn = document.getElementsByTagName('button')[0];
btn.onclick = function() {
 changeFavicon('http://www.google.com/favicon.ico');
};

分叉或查看演示

评论

0赞 josh3736 4/29/2011
Chrome 错误已在 Chrome 6(9 月 10 日发布)中修复,因此 Chrome hack 不再需要了——事实上,我强烈建议不要使用它,因为它会破坏前进按钮。
0赞 danorton 10/8/2011
Chrome 错误可能已修复,但在 14.0.835.187 中再次被破坏。
0赞 Hugo 9/8/2012
演示不适用于 Chrome 21/WinXP。
0赞 Patrick 5/8/2013
演示在 Chrome 26/Win7 中对我不起作用。document.head || document.head = document.getElementsByTagName('head')[0]; Uncaught ReferenceError: Invalid left-hand side in assignment
2赞 Aaron 2/3/2016
这适用于所有当前支持的浏览器(IE 11、Edge、FF 和 Chrome),这些浏览器无法使用 safari 进行测试
4赞 Greg 1/25/2011 #7

使此功能适用于 IE 的唯一方法是将 Web 服务器设置为处理对 *.ico 的请求,以调用服务器端脚本语言(PHP、.NET 等)。同时设置 *.ico 重定向到单个脚本,并让此脚本提供正确的网站图标文件。我敢肯定,如果您希望能够在同一个浏览器中在不同的网站图标之间来回反弹,缓存仍然会有一些有趣的问题。

4赞 Dan 6/25/2011 #8

我会使用 Greg 的方法并为 favicon.ico 制作一个自定义处理程序 下面是一个(简化的)处理程序,可以工作:

using System;
using System.IO;
using System.Web;

namespace FaviconOverrider
{
    public class IcoHandler : IHttpHandler
    {
    public void ProcessRequest(HttpContext context)
    {
        context.Response.ContentType = "image/x-icon";
        byte[] imageData = imageToByteArray(context.Server.MapPath("/ear.ico"));
        context.Response.BinaryWrite(imageData);
    }

    public bool IsReusable
    {
        get { return true; }
    }

    public byte[] imageToByteArray(string imagePath)
    {
        byte[] imageByteArray;
        using (FileStream fs = new FileStream(imagePath, FileMode.Open, FileAccess.Read))
        {
        imageByteArray = new byte[fs.Length];
        fs.Read(imageByteArray, 0, imageByteArray.Length);
        }

        return imageByteArray;
    }
    }
}

然后,您可以在 IIS6 中 Web 配置的 httpHandlers 部分中使用该处理程序,或使用 IIS7 中的“处理程序映射”功能。

评论

1赞 ethermal 2/21/2015
我真的很好奇为什么这被否决了?考虑到其他人都依赖于可能可用也可能不可用的脚本,这实际上是最好的答案。
2赞 Alexis Wilke 8/25/2018
@ethermal 因为它在服务器端看起来是动态的。OP要求客户一方的活力。
47赞 vorillaz 6/15/2014 #9

jQuery版本:

$("link[rel='shortcut icon']").attr("href", "favicon.ico");

甚至更好:

$("link[rel*='icon']").attr("href", "favicon.ico");

Vanilla JS版本:

document.querySelector("link[rel='shortcut icon']").href = "favicon.ico";

document.querySelector("link[rel*='icon']").href = "favicon.ico";

评论

0赞 MrShmee 2/21/2015
@pkExec 这个和上面 keparo 的答案(选择的答案)的结合让我在 ff 和 chrome 中都能工作。
26赞 Michał Perłakowski 3/13/2016 #10

更现代的方法:

const changeFavicon = link => {
  let $favicon = document.querySelector('link[rel="icon"]')
  // If a <link rel="icon"> element already exists,
  // change its href to the given link.
  if ($favicon !== null) {
    $favicon.href = link
  // Otherwise, create a new element and append it to <head>.
  } else {
    $favicon = document.createElement("link")
    $favicon.rel = "icon"
    $favicon.href = link
    document.head.appendChild($favicon)
  }
}

然后,您可以像这样使用它:

changeFavicon("http://www.stackoverflow.com/favicon.ico")
2赞 MemeDeveloper 7/25/2017 #11

是的,完全有可能

  • 在 favicon.ico 之后使用查询字符串(和其他文件链接 - 请参阅下面的答案链接)
  • 只需确保服务器响应“someUserId” 正确的映像文件(可以是静态路由规则或动态服务器端代码)。

例如:

<link rel="shortcut icon" href="/favicon.ico?userId=someUserId">

然后,无论您使用哪种服务器端语言/框架,都应该能够根据 userId 轻松找到文件并响应该请求提供它。

但是要正确地做网站图标(这实际上是一个非常复杂的主题),请看这里的答案 https://stackoverflow.com/a/45301651/661584

比自己解决所有细节要容易得多

享受。

评论

0赞 Alexis Wilke 8/25/2018
是的,链接很好。我认为这些答案在IE中不起作用的主要原因是因为它们不使用该默认图标,而是寻找或其他一些此类变体。<link>apple-touch-icon
3赞 Oscar Nevarez 12/13/2017 #12

我在我的项目中使用 favico.js

它允许将网站图标更改为一系列预定义的形状以及自定义形状。

在内部,它用于渲染和数据 URL 进行图标编码。canvasbase64

该库还具有不错的功能:图标徽章和动画;据称,您甚至可以将网络摄像头视频流式传输到图标:)

评论

0赞 Dima Tisnek 2/26/2019
链接和库非常有用,请描述它是如何工作的,以便这也成为所述问题的有效答案。
1赞 Oscar Nevarez 2/26/2019
谢谢@DimaTisnek。我已经更新了我的答案。
4赞 Pepelegal 9/2/2018 #13

对于使用jQuery的用户,有一个单行解决方案:

$("link[rel*='icon']").prop("href",'https://www.stackoverflow.com/favicon.ico');
9赞 max4ever 12/10/2018 #14

或者,如果您想要一个表情符号:)

var canvas = document.createElement("canvas");
canvas.height = 64;
canvas.width = 64;

var ctx = canvas.getContext("2d");
ctx.font = "64px serif";
ctx.fillText("☠️", 0, 64); 

$("link[rel*='icon']").prop("href", canvas.toDataURL());

道具 https://koddsson.com/posts/emoji-favicon/

评论

0赞 aggregate1166877 1/15/2022
这是多么不可思议的程度。
4赞 Ruskin 5/14/2020 #15

我在开发网站时一直使用这个功能......所以我可以一目了然地看到哪个选项卡中运行了本地、开发或生产。

现在 Chrome 支持 SVG 网站图标,它使它变得容易得多。

Tampermonkey 脚本

https://gist.github.com/elliz/bb7661d8ed1535c93d03afcd0609360f 上查看一个 tampermonkey 脚本,该脚本指向我在 https://elliz.github.io/svg-favicon/ 上搞砸的演示站点

基本代码

从另一个答案改编了这个......可以改进,但足以满足我的需求。

(function() {
    'use strict';

    // play with https://codepen.io/elliz/full/ygvgay for getting it right
    // viewBox is required but does not need to be 16x16
    const svg = `
    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
      <circle cx="8" cy="8" r="7.2" fill="gold" stroke="#000" stroke-width="1" />
      <circle cx="8" cy="8" r="3.1" fill="#fff" stroke="#000" stroke-width="1" />
    </svg>
    `;

    var favicon_link_html = document.createElement('link');
    favicon_link_html.rel = 'icon';
    favicon_link_html.href = svgToDataUri(svg);
    favicon_link_html.type = 'image/svg+xml';

    try {
        let favicons = document.querySelectorAll('link[rel~="icon"]');
        favicons.forEach(function(favicon) {
            favicon.parentNode.removeChild(favicon);
        });

        const head = document.getElementsByTagName('head')[0];
        head.insertBefore( favicon_link_html, head.firstChild );
    }
    catch(e) { }

    // functions -------------------------------
    function escapeRegExp(str) {
        return str.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1");
    }

    function replaceAll(str, find, replace) {
        return str.replace(new RegExp(escapeRegExp(find), 'g'), replace);
    }

    function svgToDataUri(svg) {
        // these may not all be needed - used to be for uri-encoded svg in old browsers
        var encoded = svg.replace(/\s+/g, " ")
        encoded = replaceAll(encoded, "%", "%25");
        encoded = replaceAll(encoded, "> <", "><"); // normalise spaces elements
        encoded = replaceAll(encoded, "; }", ";}"); // normalise spaces css
        encoded = replaceAll(encoded, "<", "%3c");
        encoded = replaceAll(encoded, ">", "%3e");
        encoded = replaceAll(encoded, "\"", "'"); // normalise quotes ... possible issues with quotes in <text>
        encoded = replaceAll(encoded, "#", "%23"); // needed for ie and firefox
        encoded = replaceAll(encoded, "{", "%7b");
        encoded = replaceAll(encoded, "}", "%7d");
        encoded = replaceAll(encoded, "|", "%7c");
        encoded = replaceAll(encoded, "^", "%5e");
        encoded = replaceAll(encoded, "`", "%60");
        encoded = replaceAll(encoded, "@", "%40");
        var dataUri = 'data:image/svg+xml;charset=UTF-8,' + encoded.trim();
        return dataUri;
    }

})();

只需将您自己的 SVG(如果您使用工具,可以用 Jake Archibald 的 SVGOMG 清理)放入顶部的 const 中即可。确保它是正方形的(使用 viewBox 属性),你就可以开始了。

评论

0赞 Ruskin 8/24/2020
@flyingsheep因为它太贪婪了。我只想对某些浏览器中有问题的字形进行编码。使用上面的子集,输出更具人类可读性和可编辑性。上面的列表可能已经过时了,现在我们不必担心旧的IE。我最近没有测试过。
24赞 ubershmekel 3/6/2021 #16

这里有一个片段,可以使网站图标成为表情符号或文本。当我在 stackoverflow 时,它可以在控制台中工作。

function changeFavicon(text) {
  const canvas = document.createElement('canvas');
  canvas.height = 64;
  canvas.width = 64;
  const ctx = canvas.getContext('2d');
  ctx.font = '64px serif';
  ctx.fillText(text, 0, 64);

  const link = document.createElement('link');
  const oldLinks = document.querySelectorAll('link[rel="shortcut icon"]');
  oldLinks.forEach(e => e.parentNode.removeChild(e));
  link.id = 'dynamic-favicon';
  link.rel = 'shortcut icon';
  link.href = canvas.toDataURL();
  document.head.appendChild(link);
}

changeFavicon('❤️');

评论

0赞 Savrige 8/5/2022
我喜欢这种方法,不需要外部 url 或网站图标文件。
5赞 yooneskh 7/21/2021 #17

在大多数情况下,Favicon 是这样声明的。

<link rel="icon" href"...." />

这样你就可以通过这个来获得对它的引用。

const linkElement = document.querySelector('link[rel=icon]');

你可以用这个改变图片

linkElement.href = 'url/to/any/picture/remote/or/relative';
1赞 Gonzalo Odiard 11/20/2021 #18

在 Chrome 上测试 2021 年提出的解决方案时,我发现有时浏览器会缓存网站图标并且不显示更改,即使链接已更改

此代码有效(类似于之前的提议,但添加了一个随机参数以避免缓存)

let oldFavicon = document.getElementById('favicon')
var link = document.createElement('link')
link.id = 'favicon';
link.type = 'image/x-icon'
link.rel = 'icon';
link.href = new_favicon_url +'?=' + Math.random();
if (oldFavicon) {
    document.head.removeChild(oldFavicon);
}
document.head.appendChild(link);

https://gist.github.com/mathiasbynens/428626#gistcomment-1809869 复制,以防其他人遇到同样的问题