在下文中,我使用此页面来测试http://nitroflare.com/view/A71F0994E20F2E0/security-privacy.jpg
以下脚本点击慢速下载,然后移除点击后显示的弹出广告。
我没有点击免费下载,它会首先弹出一个窗口,我想调用它的第二个点击功能
function () {
$(this).hide();
$("#CountDownTimerContainer").show();
startFreeDownload();
}
我的脚本执行$("#CountDownTimerContainer").show()
但由于某种原因它不会执行startFreeDownload()
。
问题
如何调用页面上的startFreeDownload()
?
// ==UserScript==
// @name NitroFlare
// @namespace https://nitroflare.com/
// @description https://nitroflare.com/
// @include https://nitroflare.com/*
// @version 1
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @require https://greasyfork.org/scripts/5392-waitforkeyelements/code/WaitForKeyElements.js?version=115012
// ==/UserScript==
function SkipId(objId){
var oId = document.getElementById(objId);
oId.click();
}
window.onload = function(){
SkipId('slow-download');
};
waitForKeyElements("div.superbox-wrapper", removeSuperbox);
function removeSuperbox() {
document.getElementById('superbox-wrapper').hide();
}
$("#CountDownTimerContainer").show();
startFreeDownload();
答案 0 :(得分:2)
document.getElementById
返回一个DOM节点,该节点没有hide()
方法。
手动使用jQuery:$('#superbox-wrapper').hide()
或使用waitForKeyElements,如下例所示:
function removeSuperbox(jNode) {
jNode.hide();
}
此外,由于您将自己的jQuery注入页面并使用@grant none
,因此如果站点有自己的jQuery,则可能需要使用jQuery.noConflict()。
答案 1 :(得分:0)
(function (){
$("#CountDownTimerContainer").show();
console.log(0);
startFreeDownload();
})();
function startFreeDownload(){
console.log(1);
}
试试这个它应该适合你。