XUL 的 jQuery?

发布于 2024-08-15 17:56:40 字数 184 浏览 6 评论 0原文

我在互联网上阅读并发现 jQuery 在 XUL 上工作正常。

我的问题是:

  • 是否有专门为 XUL 设计的 jQuery 插件?
  • 还有其他专门为 XUL 制作的类似 jQuery 的库吗?

我还没有在 XUL 上测试过 jQuery,我只是出于好奇而问这些问题。

I have read on the internet and found out that jQuery works OK on XUL.

My questions are:

  • Are there any jQuery plugins that are specially made to work with XUL?
  • Is there any other jQuery-like library that was specially made for XUL?

I have not yet tested jQuery on XUL, I'm just asking these questions for curiosity.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

南薇 2024-08-22 17:56:40
<!-- language: lang-js -->
<?xml version="1.0" encoding="utf-8"?>
    <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
    <!DOCTYPE window>
    <window
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        xmlns:html="http://www.w3.org/1999/xhtml">
        <html:script type="application/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"/>
        <html:script type="application/javascript" src="myjs.js"/>

myjs.js

<!-- language: lang-js -->
$(window).load(function() {
    console.log($(document));
});
<!-- language: lang-js -->
<?xml version="1.0" encoding="utf-8"?>
    <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
    <!DOCTYPE window>
    <window
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        xmlns:html="http://www.w3.org/1999/xhtml">
        <html:script type="application/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"/>
        <html:script type="application/javascript" src="myjs.js"/>

myjs.js

<!-- language: lang-js -->
$(window).load(function() {
    console.log($(document));
});
年少掌心 2024-08-22 17:56:40

现在回答有点晚了,但我想发布这个,以便其他有相同问题的人可以尝试这个:

检查一下,jQuery 1.9.1 中的许多功能都对我有用: http://digitalmihailo.blogspot.com/2008/05/jquery-and-dynamic- html-in-xul.html

正如作者所说,它基本上将默认名称空间定义为 XHTML 而不是 XUL。

但是, .append('

something

') 示例对我不起作用,但我尝试使用 .html('

something< /p>') 确实如此。

希望有帮助。

It's a bit late to answer, but I want to post this so anyone else having the same question can try this:

Check this out, many of the functions in jQuery 1.9.1 worked for me: http://digitalmihailo.blogspot.com/2008/05/jquery-and-dynamic-html-in-xul.html

It's basically defining the default namespace as XHTML instead of XUL, as the author says.

However, the .append('<p>something</p>') example didn't work for me, but I tried with .html('<p>something</p>') and it did.

Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文