myEnv.js 437 B

123456789101112131415
  1. // 四维 千寻
  2. const envTxt = '四维'
  3. // 动态插入
  4. const faviconurl = `./favicon${envTxt === '千寻' ? '2' : ''}.ico`;//这里可以是动态的获取的favicon的地址
  5. const link = document.querySelector("link[rel*='icon']") || document.createElement('link');
  6. link.type = 'image/x-icon';
  7. link.rel = 'shortcut icon';
  8. link.href = faviconurl;
  9. document.getElementsByTagName('head')[0].appendChild(link);