我正在构建一个 chrome 扩展,它打开一个 jquery 对话框并询问用户当前网站。
这是我到目前为止所做的
背景.html
<html>
<head>
<script>
var tabUrl='';
chrome.browserAction.onClicked.addListener(function(tab) {
tabUrl=tab.url; //this varible i want to pass to popup.js
chrome.tabs.executeScript(null,
{file:"jquery-ui.css",
runAt:"document_start"},
function() { });
chrome.tabs.executeScript(null,
{file:"jquery.js",
runAt:"document_start"},
function () {
chrome.tabs.executeScript(null,
{file:"jquery-ui.min.js"},
function () {
chrome.tabs.executeScript(null, {file:"popup.js"}, function() {
});
});
});
});
</script>
<script ></script>
</head>
</html>
popup.js
$(function() {
var myurl='http://localhost/addReview.php?url='+tabUrl;
var NewDialog = $('<div id="MenuDialog" ><iframe id="loader" frameborder="0" style="height:400px;width:100%" src="'+myurl+'"></iframe></div>');
NewDialog.dialog({
modal: true,
title: "Curate to WishCart",
show: 'clip',
hide: 'clip',
width: '744'
});
});
我尝试了另一种方式,我将我的 popup.js 代码复制到 background.html 但扩展控制台显示以下错误。
未定义符号 $
未捕获的类型错误:对象 [对象对象] 没有方法“对话”
我想将 tabUrl 传递给 popup.js,这样我就可以加载 i-frame 并使用 iframe src 属性发送当前选项卡 url。