Uncaught TypeError: Cannot read property 'offsetHeight' of null

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/hua_ban_yu/article/details/82799280

在使用offsetHeight计算内容的高度时报Uncaught TypeError: Cannot read property 'offsetHeight' of null这个错误。

错误原因:JS运行的时候页面还没有加载完成,js代码找不到页面元素,就会抛出这个问题

解决方案:把自定义js放在<body/>结束标签前。

猜你喜欢

转载自blog.csdn.net/hua_ban_yu/article/details/82799280