Firefox 扩展中使用的 Javascript 变量
我有:我想了解 Firefox 扩展,因此我从 http://kb.mozillazine.org/Getting_started_with_extension_development。
在 hello.xul 中,我有:(
<hbox align="center">
<description flex="1">text in box</description>
</hbox>
给出一个弹出框,其中包含文本“框中的文本”)
在overlay.js 中,我有:
var HelloWorld = {
onLoad: function() {
// initialization code
this.initialized = true;
},
onMenuItemCommand: function() {
window.open("chrome://helloworld/content/hello.xul", "", "chrome");
var a = "text I want in box";
}
};
window.addEventListener("load", function(e) { HelloWorld.onLoad(e); }, false);
问题:如何在 javascript 文件中使用变量 a那么该变量的内容就是框中“打印”的内容?
I have: I would like to learn about Firefox extensions, so I downloaded the zip file containing the "Hello World" example from http://kb.mozillazine.org/Getting_started_with_extension_development.
In hello.xul I have:
<hbox align="center">
<description flex="1">text in box</description>
</hbox>
(gives a pop-up box with the text "text in box")
In overlay.js I have:
var HelloWorld = {
onLoad: function() {
// initialization code
this.initialized = true;
},
onMenuItemCommand: function() {
window.open("chrome://helloworld/content/hello.xul", "", "chrome");
var a = "text I want in box";
}
};
window.addEventListener("load", function(e) { HelloWorld.onLoad(e); }, false);
Question: How to I use the variable a in the javascript file in so that the content of that variable is what is "printed" in the box?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将参数传递到新窗口。 此处显示了一个示例
You need to pass the parameters to new window. An example is shown here
首先,请阅读以下内容: https://developer.mozilla.org/en/DOM /window.openDialog#Passing_extra_parameters_to_the_dialog
您应该使用参数将值从一个窗口传递到另一个窗口
(Dialog概念)
。这提供了一种在 xul 文件之间传递值的简单方法。
对于您的问题,您可以在 xxx.xul 中执行类似的操作。这将打开
hello.xul
以及额外的参数 returnValues:注意模态是必须的。
接下来,在 xxx.xul 中,存储要传递给
hello.xul
的所有值(我们称之为 y),如下所示:注意
window.argument[0]
指的是 returnValues现在您可以在
hello.xul
中访问 y 的值(在您的情况下是标签的名称),如下所示:基本上,
您当时将一个参数传递给子窗口打开它。
然后在子窗口中,用希望传回父窗口的值填充参数,然后关闭子窗口。
现在回到父窗口,您可以访问传递给子窗口的参数,它包含子窗口更新的信息。
First, please read this: https://developer.mozilla.org/en/DOM/window.openDialog#Passing_extra_parameters_to_the_dialog
You should use parameters to pass value from one window to another window
(Dialog Concept)
.This provides a simple way to pass values across xul files.
For your problem you can do something like this in the xxx.xul. This will open
hello.xul
along with the extra parameter returnValues:Note modal is a must.
Next in your xxx.xul, store all the values (lets call it y) that you want to pass to
hello.xul
as below:Note
window.argument[0]
refers to returnValuesNow you can access the values of y (which is the names of the labels in your case) in
hello.xul
as follows:Basically,
You pass a parameter to the child window at the time of opening it.
Then in the child window, fill the parameter with the values that wish to pass back to the parent window and then close the child window.
Now back in the parent window you can access the parameter that you passed to the child and it contains information updated by the child window.