如何在 XULRunner 中动态加载样式表?
在 Web 浏览器中运行时,我可以这样做来动态注入样式表:
var link = document.createElement('link'),
head = document.getElementsByTagName('HEAD')[0];
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = '/path/to/stylesheet.css';
head.appendChild(link);
Is there a way to do the same in XULRunner?我已经看到您可以使用名为 Components.interfaces.mozIJSSubScriptLoader
的东西来加载 JavaScript,但是 CSS 是否存在相同的功能?
When running in a web browser, I can do this to dynamically inject a stylesheet:
var link = document.createElement('link'),
head = document.getElementsByTagName('HEAD')[0];
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = '/path/to/stylesheet.css';
head.appendChild(link);
Is there a way to do the same in XULRunner? I've seen you can use something called Components.interfaces.mozIJSSubScriptLoader
to load JavaScript, but does the same capability exist for CSS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用样式表服务。例如:
更多示例。
You can try using the style sheet service. Something like:
More examples.