如何让 Greasemonkey 单击具有指定文本的链接?
好吧,基本上我想单击一个会更改但始终具有相同文本名称的链接。 下面是代码的示例
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个执行此操作的入门脚本。请注意,它使用 jQuery 并假设您正在运行 Firefox 或使用 Tampermonkey(如果您使用的是 Chrome)。
另请参阅:
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.
See also:
使用 XPath 的 Vanilla JS 版本:
Vanilla JS version using XPath: