警报不止一次触发,因为该页面包含 iFrame(事实上,与主页具有相同的 URL)。Greasemonkey 将 iFrame 视为独立的网页。用来@noframes
阻止它。
该脚本没有找到链接,因为它们是在页面加载和 GM 脚本触发后很久通过 javascript 添加的。这是脚本和 AJAX 的常见问题。一个简单、强大的解决方案是使用waitForKeyElements()
(和 jQuery)。
这是一个完整的示例脚本,它避免了 iFrame,并展示了如何获取动态链接:
// ==UserScript==
// @name _Find elements added by AJAX
// @include http://YOUR_SERVER.COM/YOUR_PATH/*
// @match http://stackoverflow.com/questions/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @noframes
// @grant GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
introduced in GM 1.0. It restores the sandbox.
*/
var totalUsrLinks = 0;
waitForKeyElements ("a[href*='/users/']", listLinks);
function listLinks (jNode) {
var usrMtch = jNode.attr ("href").match (/^.*\/users\/(\d+)\/.*$/);
if (usrMtch && usrMtch.length > 1) {
totalUsrLinks++;
var usrId = usrMtch[1];
console.log ("Found link for user: ", usrId, "Total links = ", totalUsrLinks);
}
}