画像(この場合は、正常な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残り""ます。