我正在尝试使用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>

最佳答案

对,
文档对象在XUl中没有onload或ready事件,您必须侦听“window”对象中的“load”或使用“onload”。
链接:
https://developer.mozilla.org/en-US/docs/XUL/Events#Window_events

关于javascript - xulrunner调用外部javascript,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12141825/

10-12 05:17