Greasemonkey 脚本中未触发 jQuery 单击事件

发布于 2024-12-02 00:40:01 字数 985 浏览 0 评论 0原文

我已通过 GM 将图像附加到页面,并且尝试执行单击事件但无济于事。

我有什么想法吗?

页面标记包含:

<img id="kwdHelp" src="myImage />

Greasemonkey/Tampermonkey 脚本片段...

function jQueryLoaded(){
    jQuery('#kwdHelp').click(function(){
    alert('clicked show help'); //DOES NOT FIRE
    });

    jQuery(document).bind('DOMNodeInserted', function(event) 
    {
        if (event && event.target && jQuery(event.target).attr("class") == 'aw-ti-resultsPanel-details') 
        {
            if (waitToLoad !== null) 
            {
                window.clearTimeout(waitToLoad);
            }
            waitToLoad = window.setTimeout(SearchDomains, 100);
        }
    });
    setupLoadingImage();
};


function checkIfjQLoaded() {
   //if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(checkIfjQLoaded,100); }
    //else { jQuery = unsafeWindow.jQuery; jQueryLoaded();}
    jQueryLoaded();
};

checkIfjQLoaded();

I've appended an image to a page via GM and I'm trying to execute a click event to no avail.

Any ideas what I'm missing?

Page markup contains:

<img id="kwdHelp" src="myImage />

Greasemonkey/Tampermonkey script snippet...

function jQueryLoaded(){
    jQuery('#kwdHelp').click(function(){
    alert('clicked show help'); //DOES NOT FIRE
    });

    jQuery(document).bind('DOMNodeInserted', function(event) 
    {
        if (event && event.target && jQuery(event.target).attr("class") == 'aw-ti-resultsPanel-details') 
        {
            if (waitToLoad !== null) 
            {
                window.clearTimeout(waitToLoad);
            }
            waitToLoad = window.setTimeout(SearchDomains, 100);
        }
    });
    setupLoadingImage();
};


function checkIfjQLoaded() {
   //if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(checkIfjQLoaded,100); }
    //else { jQuery = unsafeWindow.jQuery; jQueryLoaded();}
    jQueryLoaded();
};

checkIfjQLoaded();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

终陌 2024-12-09 00:40:01

当您尝试将事件绑定到该元素时,该元素是否存在于文档中?

我自己经常犯这样的错误。

Is the element present in the document at the time when you try to bind the event to it?

I usually do that mistake myself.

以酷 2024-12-09 00:40:01

假设这两个未定义的函数确实在代码中的某处,问题中的代码应该可以工作(尽管需要改进,请参见下文)。

问题中没有的东西就是有问题的。

  • 链接到目标页面。
  • 显示完整的、未经编辑的代码。
  • Firebug 控制台给出什么错误消息?

摆脱那个 checkIfjQLoaded() 胡言乱语。这是过时且糟糕的做法。

使用 // @require 加载 jQuery,默认情况下脚本会在 document.ready 处触发。

代码不仅更简单,而且更快、更高效,因为它不必每次都获取 jQuery。

该脚本将变为:

// ==UserScript==
// @name     _YOUR_NAME
// @include  http://YOUR_SERVER/YOUR_PATH/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js
// ==/UserScript==

$('#kwdHelp').click(function(){
    alert('clicked show help'); //DOES NOT FIRE
});

$(document).bind('DOMNodeInserted', function(event) 
{
    if (event && event.target && $(event.target).attr("class") == 'aw-ti-resultsPanel-details') 
    {
        if (waitToLoad !== null) 
        {
            window.clearTimeout(waitToLoad);
        }
        waitToLoad = window.setTimeout(SearchDomains, 100);
    }
});
setupLoadingImage();

function SearchDomains () {
    //...
}

function setupLoadingImage () {
    //...
}

最后,如果您想在 Chrome 上使用该脚本,请安装Tampermonkey< /a> 以获得最佳结果。

The code in the question should work (although it needs improvement, see below), assuming that the 2 undefined functions are really in the code somewhere.

Something that is not in the question is at fault.

  • Link to the target page.
  • Show the full, unedited code.
  • What error messages does the Firebug console give?

Get rid of that checkIfjQLoaded() malarkey. It's obsolete and poor practice.

Use // @require to load jQuery, and the script fires at document.ready by default.

Not only is the code simpler but it is much faster and more efficient, as it doesn't have to fetch jQuery every time.

The script would become:

// ==UserScript==
// @name     _YOUR_NAME
// @include  http://YOUR_SERVER/YOUR_PATH/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js
// ==/UserScript==

$('#kwdHelp').click(function(){
    alert('clicked show help'); //DOES NOT FIRE
});

$(document).bind('DOMNodeInserted', function(event) 
{
    if (event && event.target && $(event.target).attr("class") == 'aw-ti-resultsPanel-details') 
    {
        if (waitToLoad !== null) 
        {
            window.clearTimeout(waitToLoad);
        }
        waitToLoad = window.setTimeout(SearchDomains, 100);
    }
});
setupLoadingImage();

function SearchDomains () {
    //...
}

function setupLoadingImage () {
    //...
}

Finally, if you want to use the script on Chrome, install Tampermonkey for best results.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文