我无法从iframe访问我的扩展程序Firefox的变量

时间:2012-10-13 12:49:03

标签: javascript firefox-addon

随着新版Firefox 16的发布,我的扩展程序产生了一个错误:“权限被拒绝访问属性'myVarExt'”。

browser.xul

<?xml version="1.0"?>
<!DOCTYPE overlay SYSTEM "chrome://mynewext/locale/overlay.dtd">
<overlay id="mynewext-overlay"
         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
         xmlns:svg="http://www.w3.org/2000/svg"
         xmlns:html="http://www.w3.org/1999/xhtml">
<script type="application/x-javascript;version=1.7" src="base.js"/>
<hbox id="browser">
    <splitter insertafter="sidebar-splitter"
              state="open"
              resizebefore="closest"
              resizeafter="closest"
              id="mynewext-splitter"
              hidden="true"/>
    <vbox id="mynewext-sidebar"
          insertafter="sidebar-splitter"
          width="308"
          minwidth="308"
          maxwidth="308"
          collapsed="true">
      <tabbox flex="1">
        <tabpanels id="mynewext-panels" flex="1">
          <iframe id="mynewext-dashboard" flex="1"/>
        </tabpanels>        
      </tabbox>
    </vbox>
  </hbox>
</overlay>

文件 base.js 注册变量和填充iframe的功能:

base.js

...
var myVarExt='Good!'; //Is the same variable that was accessed
...
var xulContentPanel=_('dashboard');
xulContentPanel.contentDocument.location.href = 'resource://mynewext/html/bodyfirefox.xhtml';
...

以这种方式访问​​iframe的变量 myVarExt

bodyfirefox.xhtml

<!DOCTYPE HTML><html xmlns="http://www.w3.org/1999/xhtml"><head>
    <title>myBar</title>
  </head>
<body><div id="testExtVar"></div></body>
<script type="text/javascript" >
var extVar=parent.myVarExt;
document.getElementById('testExtVar').innerHTML = extVar;
</script>
</html>

在旧版本的Firefox中,这种吸引力很有用,而且新的没有。可能是什么问题?

1 个答案:

答案 0 :(得分:0)

问题解决了。

  1. iframe不使用 type =“content”
  2. resource:// 的内容转移到 chrome:// (chrome的优先级高于资源)。
  3. 嗯,因此改写了为 chrome 支付资源的方式