在带有 Greasemonkey 扩展的 Chrome 中,如何修改 `` 结构以删除 onclick= 属性?

发布于 2024-08-25 17:15:59 字数 457 浏览 4 评论 0原文

我想修改内部网页以消除某些链接的一些 onclick 行为。

内部网页有一堆链接,例如:

<a href="/slm/detail/ar/3116370" onclick="rallyPorthole.showDetail('/ar/view.sp','3116370','pj/b');return false;">foo de fa fa</a>

How can I do an extension to Chrome so it does the following:

for link in all_links:
    if link's href attribute matches '/slm/detail/ar/...':
        remove the onclick attribute

I want to modify an internal webpage to strip away some of the onclick behavior of certain links.

The internal webpage has a bunch of links like:

<a href="/slm/detail/ar/3116370" onclick="rallyPorthole.showDetail('/ar/view.sp','3116370','pj/b');return false;">foo de fa fa</a>

How can I do an extension to Chrome so it does the following:

for link in all_links:
    if link's href attribute matches '/slm/detail/ar/...':
        remove the onclick attribute

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

作业与我同在 2024-09-01 17:15:59

找到 此脚本,以下代码可以放入以 .user.js 结尾的文件中并安装在 Firefox 或 Chrome 中。

// ==UserScript==
// @name          Rally Onclick Nuke
// @namespace     http://diveintogreasemonkey.org/download/
// @description   Nukes the "onclick" attribute from user story links so you can CTRL click a link and have it open in a new tab
// @include       https://*rally.sp
// ==/UserScript==

var links = document.getElementsByTagName("a");
for (i = 0; i < links.length; i++) {
  var node = links[i];
    var link = node.getAttribute("href");
    if (link && link.indexOf("slm/detail/ar/") > -1 ) {
        if (node.getAttribute("onclick")) {
          node.removeAttribute("onclick");
        }
    }
} 

After finding this script, the following code can be put in a file ending in .user.js and installed in Firefox or Chrome.

// ==UserScript==
// @name          Rally Onclick Nuke
// @namespace     http://diveintogreasemonkey.org/download/
// @description   Nukes the "onclick" attribute from user story links so you can CTRL click a link and have it open in a new tab
// @include       https://*rally.sp
// ==/UserScript==

var links = document.getElementsByTagName("a");
for (i = 0; i < links.length; i++) {
  var node = links[i];
    var link = node.getAttribute("href");
    if (link && link.indexOf("slm/detail/ar/") > -1 ) {
        if (node.getAttribute("onclick")) {
          node.removeAttribute("onclick");
        }
    }
} 
梦晓ヶ微光ヅ倾城 2024-09-01 17:15:59

除了 document.getElementByTagName("a"),您还可以使用 document.links,您可以阅读有关 此处

因此要修改 Ross Rogers 的代码:

var node, links = document.links;
for (var i = 0; node = links[i]; i++) {
  if (node.indexOf("slm/detail/ar/") > -1 ) {
      if (node.getAttribute("onclick")) {
        node.removeAttribute("onclick");
      }
  }
}

Instead of document.getElementByTagName("a") you can also use document.links which you can read about here.

So to modify Ross Rogers' code:

var node, links = document.links;
for (var i = 0; node = links[i]; i++) {
  if (node.indexOf("slm/detail/ar/") > -1 ) {
      if (node.getAttribute("onclick")) {
        node.removeAttribute("onclick");
      }
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文