动态修改网站favicon

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);
}

转自:https://gist.github.com/mathiasbynens/428626

posted @ 2014-01-13 20:08  不下  阅读(765)  评论(0编辑  收藏  举报