代码在浏览器控制台中工作,但不在tampermonkey中

时间:2018-05-27 03:45:15

标签: javascript console tampermonkey

我正在尝试在https://lichess.org/uZIjh0SXxnt5上运行以下代码块。

var x = document.getElementsByTagName("a");

for(var i = 0; i < x.length; i++) {
    if(x[i].href.includes("WaisKamal") && x[i].classList.contains("user_link")) {
        x[i].innerHTML = '<span class="title" data-title="GM" title="Grandmaster">GM</span> ' + x[i].innerHTML;
    }

    if(x[i].href.includes("WaisKamal") && x[i].classList.contains("text")) {
        x[i].innerHTML = '<span class="title" data-title="GM" title="Grandmaster">GM</span> ' + x[i].innerHTML;
        console.log(x[i]);
    }
}

我正在使用tampermonkey来自动化该过程。页面加载时,第一个if语句正确运行,但不是第二个。但是,当我从浏览器控制台运行第二个时,它可以正常工作。

这是脚本更详细的内容(我想添加那些橙色&#34; GM&#34; s):

没有脚本

enter image description here

使用脚本

enter image description here

我想要什么

enter image description here

我已经检查了this,但它没有解决我的问题。

有任何帮助吗?提前谢谢。

1 个答案:

答案 0 :(得分:2)

该页面的大部分是动态加载的(AJAX驱动),这意味着您的脚本通常会在您感兴趣的节点出现在页面上/上之前很久就完成运行。

您必须使用AJAX感知技术,例如waitForKeyElementsMutationObserver

这是一个完整的Tampermonkey脚本,用于说明该过程:

// ==UserScript==
// @name     _Lichess.org, Glorify select users
// @match    *://lichess.org/*
// @require  https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant    GM_addStyle
// @grant    GM.getValue
// ==/UserScript==
//- The @grant directives are needed to restore the proper sandbox.

waitForKeyElements ("a[href*='WaisKamal']", spiffifyLink);

function spiffifyLink (jNode) {
    var oldHtml = jNode.html ();
    var newHtml = '<span class="title" data-title="GM" title="Grandmaster">GM</span> ' + oldHtml;
    jNode.html (newHtml);
}

请参阅this other answer for more information about choosing and using waitForKeyElements and/with jQuery selectors