开发者问题收集

CSS背景图像未设置

2020-11-17
73

我尝试使用

document.body.style.backgroundImage = "theurltothebackground";

设置背景图像,但它一直给我一个错误,说

Uncaught TypeError: Cannot read property 'style' of null at (index):11 (anonymous) @ (index):11

我已经检查并仔细检查了代码,我很困惑为什么它会给我这个错误。请帮帮我

回答: 感谢 isherwood , 我在 body 元素之前有脚本

2个回答

您需要使用 背景 图片 和“url('url')”

document.body.style.backgroundImage = "url('image.png')";
wesleycpdev
2020-11-17

使用 backgroundImage

document.body.style.backgroundImage = "theurltothebackground";

wangdev87
2020-11-17