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();
为什么会报这个的错误,想不明白
var width=ctx.canves.width;
var height=ctx.canves.height;
这两句敲错了。
是canvas而不是canves。另外,这个错误的意思是不能读取到未定义对象的'width'属性,意味着你canves.width中canves是未定义的,只要检查一下这个就OK了,这个错误会经常遇到,得知道它产生的原因。