首页 文章 排行 更新 赞助VIP 自定义收藏 搜索狂魔 广告位购买【请先登录!】 注册 登录

    【学习笔记】canvas出现Uncaught TypeError: Cannot read property 'getContext' of null 错误 - 大咖技术

    浏览人数:100 更新时间:2022-02-14 所属栏目:技术教程

微信截图_20220214143156

今天在优化模板代码的时候,出现了的这个错误!经过我不停的百度查找资料,解决了这个问题!

在使用canvas的getcontext(“2d”)的时候,出现Uncaught TypeError: Cannot read property 'getContext' of null 错误

可能原因是在html加载之前就运行了js,所以我们使用

$(document).ready(function(){

});

在这里面写canvas代码就可以了


你来打破0评论