0
之間的溝通我有我的內容腳本下面的代碼是調用在網頁中的javascriptChrome擴展:內容腳本和網頁的腳本
var actualCode = '(' + function() {
functionInMyWebPage();
}
+ ')();';
var script = document.createElement('script');
script.textContent = actualCode;
(document.head||document.documentElement).appendChild(script);
script.parentNode.removeChild(script);
功能這是工作,它激發了functionInMyWebPage()
功能。
現在我需要獲得這個functionInMyWebPage()
的返回值並調用在內容腳本本身中定義的另一個函數。如果我在上面的腳本塊中調用它,它會抱怨,因爲它沒有定義。
人誰下投票請解釋一下原因!你的答案可以是任何事情,但是要回答一個問題,你需要有足夠的證據證明這是一個愚蠢的問題! –