Cannot read property 'width' of undefined

来源:3-1 Canvas 时钟外边框圆

小黑000

2016-12-10 10:24

var dom=document.getElementById('clock');

var ctx=dom.getContext('2d');

var width=ctx.canves.width;

var height=ctx.canves.height;

var r=width/2;

function drawbackground() {

ctx.translate(r,r);

ctx.beginPath();

ctx.lineWidth=10;

ctx.arc(0,0,r-5,Math.PI,false)

ctx.stroke();

ctx.closePath();

// body...

}

drawbackground();

为什么会报这个的错误,想不明白


写回答 关注

1回答

  • 慕运维1221375
    2016-12-10 10:41:27
    已采纳

    var width=ctx.canves.width;

    var height=ctx.canves.height;

    这两句敲错了。

    是canvas而不是canves。另外,这个错误的意思是不能读取到未定义对象的'width'属性,意味着你canves.width中canves是未定义的,只要检查一下这个就OK了,这个错误会经常遇到,得知道它产生的原因。


    小黑000

    非常感谢!恩,刚刚我也找到了

    2016-12-10 10:50:21

    共 1 条回复 >

Canvas 绘制时钟

canvas画出漂亮的时钟,通过本教程能重新掌握一些几何知识

49750 学习 · 160 问题

查看课程

相似问题