gpt4 book ai didi

javascript - xulrunner 调用外部 javascript

转载 作者:行者123 更新时间:2023-11-28 02:04:51 25 4
gpt4 key购买 nike

我正在尝试使用 XULRunner 制作离线应用程序。我正在尝试整合 JSTree对于 TreeView 。它似乎没有调用外部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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com