我有一个简单的函数,它只是location.href
从 contentscript 传递到 popup.html 页面。它不工作。我所拥有的是..
在popup.html ..
chrome.tabs.getSelected(null,function(tab)
{
chrome.tabs.sendRequest({req: "getlocation"}, function(response){
return response.reply;
});
});
在我的内容脚本中...
case "getlocation":
sendResponse({
reply: location.href
});
break;
为什么我的代码不起作用?