before: document.body.style.backgroundImage = "url(xxx.jpg)"; after: // 修复切换背景图时出现的“白色闪屏”现象 let img = new Image(); img.src = "xxx.jpg"; // 确定图片加载完成后再进行背景图片切换 img.onload = function () { document.body.style.backgroundImage = "url(" + img.src + ")"; }