一、TypeError(类型错误) (1) TypeError:Uncaught TypeError: Cannot read property 'XXX' of undefined 调用了对象不存在的方法。 (2) TypeError:'undefined'is not an object 多半是使用了某个变量,拿到了一个尚未分配的变量,即undefind,然后用又undefined去做了一些事情。比如说:绑定到某些dom上面等... (3) TypeError: 'null' is not an object null 表示该值为空。这种错误可能发生场景是:在加载元素之前尝试在 JS中