是否可以在 XUL 文件中编写 jQuery?
我想对我的 XUL 文件使用 jQuery。一般来说,我使用 XUL Explorer 单独创建每个页面并为其添加文本。实际上是在 XUL 文件中使用脚本块,如下所示:
我们可以在 XUL 文件本身的脚本块中编写脚本。
<script type="application/x-javascript">
<![CDATA[
// your code here
]]>
</script>
或者
<script>
</script>
要使用 jQuery,我们必须像这样链接文件:
<script type="application/x-javascript" src="chrome://axead/content/jquery.js" />
<script type="application/javascript" src="chrome://myapp/content/js/jquery-1.4.4.min.js"/>
我经常使用 XUL Explorer 来创建和创建文件。使用 JavaScript 测试 XUL 文件,但是当我开始在 XUL Explorer 中使用带有 jQuery 的 XUL 文件时,它不起作用。我提到了这个帖子/帖子: 是否可以使用 jQuery 来操作 XUL 元素?< /a>
有没有办法在 XUL 文件中使用/写入 jQuery?
I want to use jQuery for my XUL files. Generally I use XUL Explorer to create and text each page individually & it's really to use script blocks inside the XUL files like this:
We can write scripts inside script blocks in XUL file itself.
<script type="application/x-javascript">
<![CDATA[
// your code here
]]>
</script>
or
<script>
</script>
To use jQuery we have to link the files like this:
<script type="application/x-javascript" src="chrome://axead/content/jquery.js" />
<script type="application/javascript" src="chrome://myapp/content/js/jquery-1.4.4.min.js"/>
I use XUL Explorer a lot to create & test XUL files using JavaScript but when I started using XUL files with jQuery in XUL Explorer isn't working. I referred this thread/post:
Is it possible to use jQuery to manipulate XUL elements?
Is there any way to use/write jQuery inside XUL file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论