0

我正在尝试使用 last.fm api 进行 chrome 扩展,并且我已成功地将以下 div 放置在我希望显示的页面中。

<div id="showLastFMInfo" Title="More info about song" class="LastFMButtonDown">&raquo;</div>

但是当我点击它时,什么也没有发生,这是使用的 JS:

$(document).ready(function () {
    // this get executed
    $('#meta-frame').append('<div id="showLastFMInfo" Title="More info about song" class="LastFMButtonDown">&raquo;</div>');

    // this won't work if I click on my button
    $("#showLastFMInfo").click(function(){
        console.log("Click");
    });
});

所以你可以看到第一行被执行但 .click() 没有反应。

这是我的 manifest.json:

{
   "content_scripts": [ {
      "js": [ "jquery.js", "lastfm.api.cache.js","lastfm.api.md5.js", "lastfm.api.js","lastFMLink.js", "script.js"],
      "css": [ "LastFMLink.css" ],
      "run_at": "document_end"
   } ],

   "name": "Plug.Dj VS last.Fm",
   "description": "Implement information about the artist",
   "icons": { "16": "cookie.png", "48": "cookie.png", "128": "cookie.png" },
   "version": "0.0.1",
   "web_accessible_resources": [ "lastFMLink.js" ],
   "manifest_version": 2
}

有谁知道我做错了什么?

4

3 回答 3

6

您正在附加它,因此它是动态的,并且您需要一个委托的事件处理程序:

$('#meta-frame').on('click', '#showLastFMInfo', function(){
    console.log("Click");
});

另一方面,在附加元素后附加事件处理程序也应该有效吗?

于 2013-02-26T16:02:14.490 回答
0

使用文档或最近的静态元素

$(document).on('click','#showLastFMInfo',function(){

});
于 2013-02-26T16:01:48.457 回答
0

对于动态生成的内容,请使用这些

    $("a.offsite").live("click", function(){ alert("Goodbye!"); });                // jQuery 1.3+
    $(document).delegate("a.offsite", "click", function(){ alert("Goodbye!"); });  // jQuery 1.4.3+
    $(document).on("click", "a.offsite", function(){ alert("Goodbye!"); });        // jQuery 1.7+

不推荐使用 live 和 delegate ,因此建议使用 .on() 。

于 2013-02-26T16:08:29.850 回答