0

我有一个表,它有一个名为“recordsource”的属性,它将保存填充表内容的对象的名称。

<table id="tbl" recordsource="myobj">

现在这是我的功能:

var myobj;

function obj()
{
  this.code = new Array();
  this.name = new Array();
}

myobj = new obj();
myobj.code = ["a","b","c"];
myobj.name = ["apple","banana","carrot"];

function populate_table()
{
  mytable = document.getElementById("tbl");
  mytableobj = mytable.getAttribute("recordsource"); //this will return a string
  //my problem is how to reference the recordsource to the myobj object that have
  //the a,b,c array
}
4

2 回答 2

0

一种方法是将对象用作您希望能够访问的所有其他对象的列表。

...

var obj_list = {
  'myobj': myobj
};

function populate_table()
{
  mytable = document.getElementById("tbl");
  mytableobj = mytable.getAttribute("recordsource");

  // Then obj_list[mytableobj] == myobj

  obj_list[mytableobj].code[0] // Gives "a"
  obj_list[mytableobj].name[0] // Gives "apple"
}
于 2012-07-12T02:46:20.353 回答
0

试试这个window[ mytableobj ]它会返回myobj

于 2012-07-12T02:48:48.697 回答