如何让 Greasemonkey 单击具有指定文本的链接?

发布于 2024-10-18 00:14:20 字数 139 浏览 2 评论 0原文

好吧,基本上我想单击一个会更改但始终具有相同文本名称的链接。 下面是代码的示例

<a href="unlock.php?confirm=MD5hashere">Click Here</a>

Alright basically i want to click a link that changes but always has the same text name.
Heres an example of what the code might be

<a href="unlock.php?confirm=MD5hashere">Click Here</a>

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

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

发布评论

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

评论(2

人心善变 2024-10-25 00:14:20

这是一个执行此操作的入门脚本。请注意,它使用 jQuery 并假设您正在运行 Firefox 或使用 Tampermonkey(如果您使用的是 Chrome)。

// ==UserScript==
// @name     _YOUR_SCRIPT_NAME
// @include  http://YOUR_SERVER.COM/YOUR_PATH/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// @grant    GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
    introduced in GM 1.0.   It restores the sandbox.
*/

//--- Note that the contains() text is case-sensitive.
var TargetLink = $("a:contains('Click Here')")

if (TargetLink.length)
    window.location.href = TargetLink[0].href

另请参阅:

Here is a starter script that does that. Note that it uses jQuery and assumes you are running Firefox or using Tampermonkey, if you are on Chrome.

// ==UserScript==
// @name     _YOUR_SCRIPT_NAME
// @include  http://YOUR_SERVER.COM/YOUR_PATH/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// @grant    GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
    introduced in GM 1.0.   It restores the sandbox.
*/

//--- Note that the contains() text is case-sensitive.
var TargetLink = $("a:contains('Click Here')")

if (TargetLink.length)
    window.location.href = TargetLink[0].href

See also:

回眸一笑 2024-10-25 00:14:20

使用 XPath 的 Vanilla JS 版本:

document.evaluate("//a[text()='Click Here']", document).iterateNext().click()

Vanilla JS version using XPath:

document.evaluate("//a[text()='Click Here']", document).iterateNext().click()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文