gpt4 book ai didi

javascript - 我的 Greasemonkey 脚本没有在页面上找到元素(链接)?

转载 作者:行者123 更新时间:2023-11-30 10:43:32 25 4
gpt4 key购买 nike

网站是:lexin.nada.kth.se/lexin/#searchinfo=both,swe_gre,hej;

我的脚本是:

function main(){
var links=document.getElementsByTagName("a");
alert("There are " + links.length + "links.");
}

main();

运行脚本给我两条警告消息说

There are 0 links.

为什么我无法从文档中获得正确数量的链接?为什么我会收到两次警报?

最佳答案

  1. 警报不止一次触发,因为该页面包含 iFrame(事实上,与主页具有相同的 URL)。 Greasemonkey 将 iFrame 视为独立的网页。使用 @noframes 来阻止它。

  2. 脚本未找到链接,因为它们是在页面加载和 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);
}
}

关于javascript - 我的 Greasemonkey 脚本没有在页面上找到元素(链接)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9703710/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com