将变量放入函数 javascript 的名称中
我想要执行以下操作:
var table = new google.visualization.XXXXX(document.getElementById(divId));
其中 X 代表先前设置的变量。
如您所知,我在这里使用谷歌可视化,但我认为这与这个问题不一定相关。
I want to do the following:
var table = new google.visualization.XXXXX(document.getElementById(divId));
where the X's represent a variable that is set previously.
Just so you know, I'm using Google visualizations here, but I don't think that is necessarily relevant to this question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用方括号表示法。
Use square bracket notation.
很简单:
应该能解决问题。
Pretty simple:
Should do the trick.