我在CDM上设置了我的背景图像,但是document.body.style={mainBg}
没有像我预期的那样设置背景图像,并且它下面的控制台语句打印出一个空字符串。有人能帮我找出我做错了什么吗?
const mainBg = {
backgroundImage: 'url("../img/background.jpg")',
backgroundPosition: 'center',
backgroundRepeat: 'no-repeat',
backgroundAttachment: 'fixed',
backgroundSize: 'cover',
};
class Home extends Component {
componentDidMount() {
console.log(mainBg);
document.body.style = {mainBg};
console.log(document.body.style.backgroundImage)
}
}
编辑:我希望设置身体的背景图像。
https://stackoverflow.com/questions/50658887
复制相似问题