6
好吧,基本上我想點擊一個改變但總是具有相同文本名稱的鏈接。 繼承人的內容示例代碼可能是如何製作Greasemonkey點擊一個指定文字的鏈接?
<a href="unlock.php?confirm=MD5hashere">Click Here</a>
好吧,基本上我想點擊一個改變但總是具有相同文本名稱的鏈接。 繼承人的內容示例代碼可能是如何製作Greasemonkey點擊一個指定文字的鏈接?
<a href="unlock.php?confirm=MD5hashere">Click Here</a>
這裏是一個啓動腳本,做到這一點。請注意,它使用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
參見: