如何在xul中调用onload函数?

时间:2014-01-20 05:27:26

标签: javascript firefox-addon xul onload

我知道这个问题有很多材料,但由于某些原因,我仍然无法运行我的功能。我究竟做错了什么?下面是我的xul和js文件。

    <window id="SCOptionsWindow" title="Options" width="550" onload="SCOWLoadWindow();"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
      <script type="application/x-javascript"
            src="chrome://hi/content/optionsWindow.js" />
    ...

    function SCOWLoadWindow(){
        alert("hi");
    }

    ...
   </script>

我不知道为什么这不起作用?我的另一个喜欢oncommand工作得很好。

0 个答案:

没有答案