2

我正在尝试使用 XULRunner 制作离线应用程序。我正在尝试将JSTree集成为树视图。它似乎没有调用外部js。该代码在普通的 html 文件中正常工作。任何想法为什么它不在 XULRunner 中?我的 xul 文件的代码是这样的:

<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window
  id="findfile-window"
  title="Find Files"
  width="800"
  height="500"
  xmlns:html="http://www.w3.org/1999/xhtml"
  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!--General Use jQuery
<script src="jquery/jquery-1.8.0.js"/>-->

<!--jstree plugin-->
<script src="jstree/_lib/jquery.js"/>
<script src="jstree/jquery.jstree.js"/>
<script>
        $(document).ready(function(){
            $("#bibletree").jstree({
                "plugins" : [ "themes", "html_data" ],
                "themes" : {
                    "icons" : false,
                    "dots" : false
                }
            });
        });
 </script>


        <html:div id="bibletree">
        <html:ul id="lvl">
            <html:li><html:a href="#">Genesis</html:a>
                <html:ul>
                    <html:li><html:a href="#">01</html:a></html:li>
                    <html:li><html:a href="#">02</html:a></html:li>
                    <html:li><html:a href="#">03</html:a></html:li>
                    <html:li><html:a href="#">04</html:a></html:li>
                    <html:li><html:a href="#">05</html:a></html:li>
                    <html:li><html:a href="#">06</html:a></html:li>
                                    ...
</window>
4

1 回答 1

1

是的,

文档对象在 XUl 中没有 onload 或 ready 事件,您必须在“window”对象中侦听“load”或使用“onload”。

链接: https ://developer.mozilla.org/en-US/docs/XUL/Events#Window_events

于 2012-08-28T06:30:04.270 回答