Changing website favicon dynamically

前端 未结 15 1509
温柔的废话
温柔的废话 2020-11-22 02:17

I have a web application that\'s branded according to the user that\'s currently logged in. I\'d like to change the favicon of the page to be the logo of the private label,

15条回答
  •  Happy的楠姐
    2020-11-22 02:38

    jQuery Version:

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

    or even better:

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

    Vanilla JS version:

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

提交回复
热议问题