是否可以在AddOn中创建一个函数库,假设我们有:
notification(str){
$('#notification').text(str);
}
我如何从默认的html网站访问该功能?
thx:)
答案 0 :(得分:1)
您需要使用exportFunction
。
notification(str){
$('#notification').text(str);
}
exportFunction(notification, contentWindow, {
defineAs: "addonNotification"
});
然后从网页上使用window.addonNotification("hello notification!")
了解更多信息: