XUL 和 document.write()
我正在尝试创建一个简单的 Firefox 扩展,但我却发现我可以在 XUL 窗口中执行的操作。
我想使用 document.write 或获取文本区域的句柄来收集数据并在单击按钮时显示它。
有关于如何执行此操作的教程吗? 从我读到的内容来看,人们建议打开一个新窗口并向其写入内容,但我的目标是在浏览器底部建立一个持久的窗口。
I'm attempting to create a simple firefox extension and am stumbling on what I'm allowed to do in a XUL window.
I'd like to use document.write or get a handle on a textarea to collect data and display it when a button is clicked.
Are there any tutorials on how to do this? From what I've been reading, people have suggested opening a new window and writing to it, but my goal is a persistent window at the bottom of the browser.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 xulrunner 编写了一个简单的 XUL 应用程序。 试试这个: http://plindenbaum.blogspot.com/2009 /02/standalone-xul-application-translated.html
稍后,当您的应用程序正确运行时,您将其转换为扩展。
希望能帮助到你。
I wrote a simple XUL application using xulrunner. Try this : http://plindenbaum.blogspot.com/2009/02/standalone-xul-application-translating.html
Later when your application will be correctly running you will transform it into an extension.
Hope it helps.