Chrome 中的“未捕获类型错误:非法调用”
2022-08-30 02:39:32
当我使用下面的代码做一些原生支持的动画时:requestAnimationFrame
var support = {
animationFrame: window.requestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.msRequestAnimationFrame ||
window.oRequestAnimationFrame
};
support.animationFrame(function() {}); //error
support.animationFrame.call(window, function() {}); //right
直接打电话会给...support.animationFrame
未捕获的类型错误:非法调用
在浏览器中。为什么?