Firefox 扩展中使用的 Javascript 变量

发布于 2024-12-12 19:31:30 字数 896 浏览 1 评论 0原文

我有:我想了解 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 技术交流群。

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

发布评论

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

评论(2

怎樣才叫好 2024-12-19 19:31:30

您需要将参数传递到新窗口。 此处显示了一个示例

You need to pass the parameters to new window. An example is shown here

枫林﹌晚霞¤ 2024-12-19 19:31:30

首先,请阅读以下内容: https://developer.mozilla.org/en/DOM /window.openDialog#Passing_extra_parameters_to_the_dialog

您应该使用参数将值从一个窗口传递到另一个窗口(Dialog概念)

这提供了一种在 xul 文件之间传递值的简单方法。

对于您的问题,您可以在 xxx.xul 中执行类似的操作。这将打开 hello.xul 以及额外的参数 returnValues:

var returnValues = { out: null };
window.openDialog("hello.xul", "tree", "modal", returnValues);

注意模态是必须​​的。

接下来,在 xxx.xul 中,存储要传递给 hello.xul 的所有值(我们称之为 y),如下所示:

window.arguments[0].out = y

注意 window.argument[0]指的是 returnValues

现在您可以在 hello.xul 中访问 y 的值(在您的情况下是标签的名称),如下所示:

var labels = returnValues.out;

基本上,

您当时将一个参数传递给子窗口打开它。

然后在子窗口中,用希望传回父窗口的值填充参数,然后关闭子窗口。

现在回到父窗口,您可以访问传递给子窗口的参数,它包含子窗口更新的信息。

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:

var returnValues = { out: null };
window.openDialog("hello.xul", "tree", "modal", 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:

window.arguments[0].out = y

Note window.argument[0] refers to returnValues

Now you can access the values of y (which is the names of the labels in your case) in hello.xul as follows:

var labels = returnValues.out;

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.

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