本文介绍了如何从 JavaScript 中的变量值创建对象属性?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想向myObj"添加一个新属性,将其命名为string1"并为其赋值为string2",但是当我这样做时,它返回undefined":

I want to add a new property to 'myObj', name it 'string1' and give it a value of 'string2', but when I do it it returns 'undefined:

var myObj = new Object;
var a = 'string1';
var b = 'string2';
myObj.a = b;

alert(myObj.string1); //Returns 'undefined'
alert(myObj.a); //Returns 'string2'

换句话说:如何创建对象属性并为其指定存储在变量中的名称,而不是变量本身的名称?

In other words: How do I create an object property and give it the name stored in the variable, but not the name of the variable itself?

推荐答案

点符号和括号符号

myObj[a] = b;

这篇关于如何从 JavaScript 中的变量值创建对象属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 18:28