我编写了一个可以在Greasemonkey扩展上运行的脚本,用于插入指向某个站点的链接。问题是它只适用于该网站的第一页。我需要一个脚本(仅限Javascript),当URL被更改时触发一个函数。
我找到了与location.hash相关的内容但不幸的是它对我不起作用。
var last_hash = "";
setInterval(function() {
hash = window.location.hash;
if(last_hash != hash && hash.length != 1) {
processing();
}
last_hash = window.location.hash;
}, 250);
有什么想法吗?