我正在制作一个小横幅的东西,我的主图像没有显示
代码似乎工作正常,但没有任何显示。
非常感谢任何帮助。
var urlString = 'url(images/mainphoto' + ss_i + '.jpg)';
var obj = document.getElementById("mainphoto");
obj.style.background = urlString;
//document.getElementById("mainphoto").style.backgroundImage = "url('images/mainphoto" + ss_i + ".jpg')";
console.log(urlString);
<div id="mainphoto"></div>
#mainphoto {
background:url(images/mainphoto0.jpg);
position: absolute;
margin-top: 149px;
z-index: 0;
}
答案 0 :(得分:2)
div
为空,因此我猜不出来,尝试将width
和height
添加到div的风格