我在下面的代碼中將內容腳本中的數據傳遞給background.html,但由於某種原因它不適用於我..這裏是代碼..如何在Chrome擴展中的contentcript和background.html之間傳遞數據
Contentscript.js
var a1 ="Shan";
chrome.extension.sendRequest({method:"text",txt:a1}, function(response) {
d=response.data;
alert(d);
});
background.html
if(request.method == "text")
{
sendResponse({data:request.key});
}
else
{
sendResponse({data:request.key});
}
我的問題是,爲什麼我不能夠通過變量 「A1」 到background.html?是否無法完成?
你是否按照文檔? http://code.google.com/chrome/extensions/messaging.html您發佈的代碼似乎並不完整。如果這是你所有的,我建議再看看文檔。 – 2012-02-10 17:22:35