为什么此代码无法返回我正在构建的Google Chrome扩展程序的当前标签页面?

时间:2012-01-04 19:43:33

标签: javascript google-chrome

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link href="../dropDown.css" rel="stylesheet" type="text/css" />
</head>

<body>

//here is some html text that isnt important


<script type="text/javascript">
    window.addEventListener("load", windowLoaded, false);
    function windowLoaded() {
      chrome.tabs.getSelected(null, function(tab) {
        currentURL=tab.url
        return currentURL
      });
      return currentURL
    }

</script>
</body>
</html>

点击它后,我的Chrome扩展程序窗口中没有显示任何内容。我正在从Get URL and save it | Chrome Extension复制此代码。 它可能是保存网址但不显示它?我想当加载窗口(chrome扩展)时它会执行代码,因此应该返回currentURL?我应该添加document.write(currentURL)来显示它吗? 对不起,如果我的帖子说明了我是新成员的事实。如果这是在错误的地方或格式让我知道!

0 个答案:

没有答案