网站建设和网站开发的区别,贩卖做网站资料,简易制作网站,模板网站 建设教材这里写自定义目录标题 现象解决方案 现象
给echarts绑定自定义点击事件时#xff0c;无法使用this#xff0c;并且无法获取到this绑定的数据。
解决方案
增加#xff1a;const _this this; 代码块如下#xff1a;
const _this this;
let myChart echarts.init(docum… 这里写自定义目录标题 现象解决方案 现象
给echarts绑定自定义点击事件时无法使用this并且无法获取到this绑定的数据。
解决方案
增加const _this this; 代码块如下
const _this this;
let myChart echarts.init(document.getElementById(myChart));
myChart.on(click, function(params) {···
});