以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- Echarts,http生成Josn时,怎么传递一个变量 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=139953) |
-- 作者:淡月斜阳 -- 发布时间:2019/8/26 15:06:00 -- Echarts,http生成Josn时,怎么传递一个变量 http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&Id=103519 参照这个例子 var myChart1 = echarts.init(document.getElementById(\'main1\')); alert("a") $.get(\'EGetYjcl.htm?type=1\').done(function (jsonstr) { var mydata = eval(\'(\' + jsonstr + \')\'); myChart1.setOption({ title: { text: \'异步数据加载示例\' }, tooltip: {}, legend: { data:[\'销量\'] }, xAxis: { data: mydata.categories }, yAxis: {}, series: [{ name: \'销量\', type: \'bar\', data: mydata.data }] }); }); map.js中,type = 1 ,这里希望传递一个订单号,用来获取指定的订单josn 这个订单合怎么 传递 |
-- 作者:有点蓝 -- 发布时间:2019/8/26 15:46:00 -- 例如 With wb.AddArticle("","ar1") .AddTitle("h1","ECharts测试") .AddTitle("h2","1. 条形图") .AddContent("<div id=""main1"" style=""width: 600px;height:400px;""></div>") .AddTitle("h2","2. 地图") .AddContent("<div id=""main2"" style=""width: 600px;height:400px;""></div>") End With dim t2 as string = "1" wb.AppendHTML("<script >var mytype = " & t2 & ";</script>",true) wb.AppendHTML("<script src=\'./lib/map.js\'></script>") js文件 $.get(\'EGetYjcl.htm?type=\' + mytype).done(function (jsonstr) {
|