问答详情
源自:3-1 Canvas 时钟外边框圆

Cannot read property 'width' of undefined

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();

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


提问者:小黑000 2016-12-10 10:24

个回答

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

    var width=ctx.canves.width;

    var height=ctx.canves.height;

    这两句敲错了。

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