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