书上例子的实践
你把这一句
if(canvas && canvas.getContext())
改成
if(canvas && canvas.getContext("2d"))
canvas 的 getContext 必须有一个参数指定绘制环境类型(2d 或 3d)。