我很难在特定的时间更改我的jumbotron背景,但是没有显示任何内容,jumbotron没有任何图片作为背景。
我的Js:

var currentTime = new Date().getHours();
if (7 <= currentTime && currentTime < 20) {
    if (document.getElementById("jumbotron")) {
        document.getElementById("jumbotron").background = "1.jpg";
    }
}else {
    if (document.getElementById("jumbotron")) {
        document.getElementById("jumbotron").background = "2.jpg";
    }
}

最佳答案

您需要使用正确的语法:

document.getElementById("jumbotron").style.backgroundImage = "url('1.jpg')";

http://www.w3schools.com/jsref/prop_style_backgroundimage.asp
完整样品如下:
https://jsfiddle.net/gevorgha/15baqpjt/

关于javascript - 根据Dytime更改div背景,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37374676/

10-11 11:31