跳至主要內容

动态切换网页图标

望间代码JavaScript图标小于 1 分钟

动态切换网页图标

//如果在vue项目中,在App.vue下的 created() 中输入
var link =
  document.querySelector("link[rel*='icon']") || document.createElement("link");
link.type = "image/x-icon";
link.rel = "shortcut icon";
link.href = this.iconUrl; //icon图标
document.getElementsByTagName("head")[0].appendChild(link);
上次编辑于:
贡献者: ViewRoom