• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

Javascript的动态变量名称

用户头像
it1352
帮助1

问题说明

我在我的应用程序中使用 jQuery Impromptu 提示,他们非常乐于助人。

I use jQuery Impromptu prompts in my application and they're very helpful.

但是,要调用Impromptu提示,您需要指定按钮名称及其返回值,如下所示:

However to call the Impromptu prompts you need to specify the button names and their return values like so:

$.prompt('Example 2',{ buttons: { Ok: true, Cancel: false } });

我真的想拥有动态按钮名称,如下所示:

I would really like to have dynamic button names, something like this:

function showprompt(question, button1, button2) {
  $.prompt(question,{ buttons: { button1: true, button2: false } });
}

但这似乎不起作用,按钮只叫'button1 '和'button2'!

But this doesn't seem to work, the buttons are just called 'button1' and 'button2'!

我尝试过使用 eval(button1) '' button1 但它们会带来语法错误。

I've tried using eval(button1) and '' button1 but they bring up syntax errors.

有什么建议吗?

正确答案

#1

由于对象文字中的属性名称可以是标识符(而不是字符串),因此不能为它们使用变量。

Since property names in an object literal can be identifiers (rather than strings), you can't use a variable for them.

你必须创建对象,然后使用方括号表示法来赋值。

You have to create the object, and then use square bracket notation to assign the values.

function showprompt(question, button1, button2) {
  var buttons = { };
  buttons[button1] = true;
  buttons[button2] = false;
  $.prompt(question,{ buttons: buttons });
}

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfiahi
系列文章
更多 icon
同类精品
更多 icon
继续加载