外链的超链接狗尾巴有没有通用的删除法? 阅读:2738回复:4
|
|
|
|
viewtheard:点击时加的回到原帖至少你给的bbs7070.com这个论坛的帖子里的链接是一开始就是要跳转的。 不过这样处理起来还简单点,一行代码搞定 // ==UserScript== // @name bbs7070.com // @namespace bbs7070.com // @match https://bbs7070.com/* // @grant none // @version 1.0 // ==/UserScript== Array.prototype.forEach.call(document.querySelectorAll('a[href^="https://bbs7070.com/plugin.php?id=austgl_iframe:austgl_iframe&url="]'),(e)=>{e.href=e.innerText}); |
|