码迷,mamicode.com
首页 > Web开发 > 详细

js 设置网页图标和标题

时间:2020-02-08 20:52:04      阅读:371      评论:0      收藏:0      [点我收藏+]

标签:change   cto   const   ==   end   图标   exists   网页   sts   

const changeFavicon = link => {
  let $favicon = document.querySelector(‘link[rel="icon"]‘);
  // If a <link rel="icon"> element already exists,
  // change its href to the given link.
  if ($favicon !== null) {
    $favicon.href = link;
    // Otherwise, create a new element and append it to <head>.
  } else {
    $favicon = document.createElement("link");
    $favicon.rel = "icon";
    $favicon.href = link;
    document.head.appendChild($favicon);
  }
};
let icon = ‘‘; // 图片地址
changeFavicon(icon); // 动态修改网站图标
let title = ‘‘; // 网站标题
document.title = title; // 动态修改网站标题

 

js 设置网页图标和标题

标签:change   cto   const   ==   end   图标   exists   网页   sts   

原文地址:https://www.cnblogs.com/mary-123/p/12285008.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!