XUL 的 jQuery?
我在互联网上阅读并发现 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
相关SO问题:是否可以使用jQuery来操作XUL 元素?
Relevant SO question: Is it possible to use jQuery to manipulate XUL elements?
myjs.js
myjs.js
现在回答有点晚了,但我想发布这个,以便其他有相同问题的人可以尝试这个:
检查一下,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.