js 动态修改浏览器标签页 icon

80 阅读1分钟

image.png


handleIcoCreate(icoUrl){
    const link= document.querySelector("link[rel*='icon']") || document.createElement('link');
    link.type = 'image/x-icon';
    link.rel = 'shortcut icon';
    link.href = icoUrl 
    document.getElementsByTagName('head')[0].appendChild(link);
}