1

新しいハッシュテーブルの変数をキーとして使用できる JavaScript の方法はありますか

var key1 = "test1";
var key2 = "test2";

var table = { key1: true, key2: true };

しかし、私はテーブルが最終的に

{ test1: true, test2: true }
4

1 に答える 1

3

次の例で使用できます。

var key1 = "test1",
  key2 = "test2",
  table = {};

table[ key1 ] = true;
table[ key2 ] = true;

console.log( table ); // { test1: true, test2: true }

jsFiddleデモを参照してください。

したがって、それらにアクセスするのは次のようになります

console.log( table.test1 );

また

console.log( table[ key1 ] );

また

console.log( table[ "test1" ] );
于 2012-12-17T17:11:13.123 に答える