// JS 强制全站替换网站图标(所有浏览器都认,不影响按钮)
document.addEventListener('DOMContentLoaded', function() {
// 你给的新图标地址
const favIconUrl = "https://dlw.teambuy.com.cn/upload/2026/02/04/0755_165356_h2SBMVG8.png";
// 删掉页面所有旧图标
document.querySelectorAll('link[rel*="icon"], link[rel*="shortcut"]').forEach(function(el) {
el.remove();
});
// 生成全兼容新图标
var link1 = document.createElement('link');
link1.rel = 'icon';
link1.type = 'image/png';
link1.href = favIconUrl;
document.head.appendChild(link1);
var link2 = document.createElement('link');
link2.rel = 'shortcut icon';
link2.href = favIconUrl;
document.head.appendChild(link2);
var link3 = document.createElement('link');
link3.rel = 'apple-touch-icon';
link3.href = favIconUrl;
document.head.appendChild(link3);
});



























