0
我試圖拉圖像(在這種情況下,/camera/frame
,這是一個已知的好JPG),並加載它作爲我的document.body
的背景。將圖像載入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
仍然""
。
'document.body.style.background ='url('+ this.src +')';' – bokonic 2012-07-12 01:57:56
但是加載'Image'對象有什麼意義?我不能只是'document.body.style.background = url(「camera/frame」);'? – 2012-07-12 01:59:39
絕對是 - 你不需要圖像 – bokonic 2012-07-12 02:03:10