0

我想从 background.js 访问 popup.js

这是我的背景.js

function abc(){

  //call function of popup.js
   xyz()
}

and this is popup.js 

function xyz(){
  //do something
}
4

1 回答 1

0

您可以使用 chrome 事件

背景
chrome.runtime.sendMessage({yourMsg: 'Your Msg'});

.js:popup.js:

chrome.runtime.onMessage.addListener(function(message) {
    //here you can call your popup.js function        
    xyz()
});
于 2018-05-31T13:58:16.263 回答