js报错 Cannot read property 'getAttribute' of null

页面echarts.js报错:Uncaught TypeError: Cannot read property 'getAttribute' of null

echarts Cannot read property 'getAttribute' of null

根据报错信息查找原因发现是因为 实例化echarts的元素不存在,查看官方文档发现:

// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('main'));

基于准备好的dom,初始化echarts实例,也就是只有 页面存在的HTML元素 才可以去初始化。

如果不知道页面是否存在此HTML元素,那么在 实例化echarts前 去打印一下看看

console.log(document.getElementById('main'))

你可能感兴趣的:(js报错 Cannot read property 'getAttribute' of null)