これが私のコードです:
Image.prototype.x = 0;
Image.prototype.y = 0;
var blankImage = new Image();
blankImage.src = "blank.png";
blankImage.x = 16;
blankImage.y = 16;
Firefox ではblankImage.x
16 が返されますが、Chrome では 0 が返されます。これを回避する方法はありますか? 私は現在の問題に対するこの解決策が好きです..