0

我有一个来自这个谷歌图表的 JavaScript 函数

function drawVisualization() {
  // Create and populate the data table.
  var data = google.visualization.arrayToDataTable([
    ['Name',                                                                 'Manager', 'Tooltip'],
    ['Mike',                                                                 null,      'The President'],
    [{v: 'Jim', f: 'Jim<br/><font color="red"><i>Vice President<i></font>'}, 'Mike',    null],
    ['Alice',                                                                'Mike',    'wonderland'],
    ['Bob',                                                                  'Jim',     'Bob Sponge'],
    ['Carol',                                                                'Bob',     null]
  ]);

  // Create and draw the visualization.
  new google.visualization.OrgChart(document.getElementById('visualization')).
      draw(data, {allowHtml: true});
}

我不明白如何填充在 JavaScript 中声明的数据数组变量。

4

1 回答 1

0

您需要执行以下操作。

  string serverVariable = "abc";
        string script = string.Format("javascript:var j={0};", serverVariable);        
        ScriptManager.RegisterStartupScript(this, this.GetType(), "uniqueKey", script, true);
于 2013-07-11T13:34:34.660 回答