我试图找出以下问题
var result = {"name":"Launches","Data":"50,56,34,25,25,55"}
我们如何使用 jquery 或 javascript 将这个变量值(结果)打印到下面的变量中
Series :[result];
任何想法。我试过了,document.write()
但它正在写入屏幕。但我需要上述变量值作为 Series 的输入。
我需要这样的结果
Series:[{"name":"Launches","Data":"50,56,34,25,25,55"}];