谁能帮我看看这个问题,我正在尝试在画布上画线,并且可以在Edge中使用,但是在Firefox和Chrome中,画布变黑了,左上角有一张皱眉。代码:
var cellwitdh = StaticData.SelectedTileSheet.getCellWidth();
var col = Math.floor(_gridCVS.width / cellwitdh);
var ctx = this._gridCVS.getContext2d();
for (i in 0...col)
{
ctx.beginPath();
ctx.moveTo(i cellwitdh, 0);
ctx.lineTo(i cellwitdh, this._gridCVS.width);
ctx.stroke();
ctx.closePath();
}