监控URL地址栏变化怎么实现
我有一个油猴脚本,这个脚本每次只能在刷新网页的时候生效插入元素。现在我想实现 一个监听浏览器地址栏URL的功能,当URL变化时,执行插入元素功能。如果监听地址栏URL变化该如何实现呢,有没有可以使用的库 if (window.location href==){}
或用window.name储存信息 wjy0 发表于 2023-4-1 12:02
if (window.location href==){}
或用window.name储存信息
这个好像不行,因为地址栏的URL好像是赋值上去的,就是页面没有刷新,但是页面内容变更了。 https://bbs.tampermonkey.net.cn/forum.php?mod=viewthread&tid=1727
https://bbs.tampermonkey.net.cn/forum.php?mod=viewthread&tid=1729 轮训检测地址 https://bbs.tampermonkey.net.cn/thread-4037-1-1.html Major 发表于 2023-4-1 14:00
这个好像不行,因为地址栏的URL好像是赋值上去的,就是页面没有刷新,但是页面内容变更了。 ...
window.name = window.location.href
if(window.location.href!=window.name){
your code
} Major 发表于 2023-4-1 14:00
这个好像不行,因为地址栏的URL好像是赋值上去的,就是页面没有刷新,但是页面内容变更了。 ...
页面没有刷新但是内容变了,要么是ajax要么是iframe
页:
[1]