我在网站上运行一个用户脚本(使用tampermonkey),每次页面上的其他内容发生变化时,我都会调用一个函数。
我将一个值存储在名为Available
的内容中。如果这是0,那么我想为网站使用标准的favicon。否则,我想在favicon中添加一个红色框,文本显示Available
的值。
这最初有效,但是Available
过后> 0,然后== 0,然后>再次0,它会停止在顶部添加带有白色文本的红色框。
代码肯定每次都到达关键点,因为我的控制台日志显示正在触发Available
的值。
这就是我所拥有的:
if(Available > 0){
var canvas = document.createElement('canvas');
canvas.width = 16;canvas.height = 16;
var ctx = canvas.getContext('2d');
var img = new Image();
img.src = '/favicon.ico';
img.onload = function() {
ctx.drawImage(img, 0, 0);
ctx.fillStyle = "#F00";
ctx.fillRect(10, 7, 6, 8);
ctx.fillStyle = '#FFFFFF';
ctx.font = 'bold 10px sans-serif';
ctx.fillText(Available, 10, 14);
var link = document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = canvas.toDataURL("image/x-icon");
document.getElementsByTagName('head')[0].appendChild(link);
};
}
else {
var canvas2 = document.createElement('canvas');
canvas2.width = 16;
canvas2.height = 16;
var ctx2 = canvas2.getContext('2d');
var img2 = new Image();
img2.src = '/favicon.ico';
img2.onload = function() {
ctx2.drawImage(img2, 0, 0);
var link2 = document.createElement('link');
link2.type = 'image/x-icon';
link2.rel = 'shortcut icon';
link2.href = canvas2.toDataURL("image/x-icon");
document.getElementsByTagName('head')[0].appendChild(link2);
};
}
答案 0 :(得分:2)
您很可能需要删除之前添加的图标链接,因此浏览器不会继续使用您添加的第一个:
var oldLinks = document.querySelectorAll('link[rel*="icon"]');
for (var i = oldLinks.length - 1; i >= 0; --i) {
var ln = oldLinks[i],
pn = ln.parentNode;
pn.removeChild(ln);
}
if (Available > 0) {
// as before
}