我无法在 html5 画布上绘制矩形。我正在调用此函数,但没有显示任何内容。我知道它的工作方式,因为我可以向它添加警报并且它工作得很好。有什么想法还是我只是傻。如果您想查看完整代码,该项目位于http://tetris.townsendwebdd.com,谢谢
paintContainer: function(){//doesn't work
var cont = this.container;
this.context.fillStyle = cont.color;
this.context.fillRect(cont.x, cont.y, cont.width, cont.height);
}
paintContainer: function(){//works just fine
alert('hi');
var cont = this.container;
this.context.fillStyle = cont.color;
this.context.fillRect(cont.x, cont.y, cont.width, cont.height);
}