-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
Description
环境
- windows 10
- ie 11
- "echarts": "^3.1.10",
浏览器报错
···bash
SCRIPT65535: Invalid calling object
报错点 Animation.js (181,1)
···js
start: function () {
var self = this;
this._running = true;
function step() {
if (self._running) {
requestAnimationFrame(step);
self._update();
}
}
this._time = new Date().getTime();
requestAnimationFrame(step);
}
运行requestAnimationFrame这个方法的时候就会报错
谢谢。