画像(この場合は、正常なJPGです)をプルし/camera/frame
て、の背景としてロードしようとしていdocument.body
ます。
これまでの私のコードは次のとおりです。
var backgroundImage = new Image();
backgroundImage.onload = function ()
{
console.log("onload");
document.body.style.backgroundImage = this.src;
};
backgroundImage.src = 'camera/frame';
"onload"
期待どおりに出力され、this.srcはへの完全なURLを出力しますが/camera/frame
、はdocument.body.style.backgroundImage
残り""
ます。