pjax事件侦听器无法在chrome扩展中工作

时间:2013-05-26 22:02:40

标签: javascript github google-chrome-extension pjax

我正在写一篇与Github有关的chrome extension。我想在用户点击Github用户个人资料页面上的公共活动标签时触发一个功能。我在扩展中添加了pjax成功事件监听器,但没有随时触发。

我将jquery.pjax.js添加到manifest.json并在contentscript.js中添加以下代码,但是当pjax请求成功时函数没有调用:

$(document).on('pjax:success', function() {
    console.log("Hello");
});

当pjax在chrome扩展中成功时,如何运行函数?

0 个答案:

没有答案