从简单的网站

时间:2015-04-23 11:14:37

标签: javascript firefox firefox-addon

是否可以在AddOn中创建一个函数库,假设我们有:

notification(str){
    $('#notification').text(str);
}

我如何从默认的html网站访问该功能?

thx:)

1 个答案:

答案 0 :(得分:1)

您需要使用exportFunction

notification(str){
    $('#notification').text(str);
}

exportFunction(notification, contentWindow, {
  defineAs: "addonNotification"
});

然后从网页上使用window.addonNotification("hello notification!")

了解更多信息: