作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在特定日期更改超大屏幕背景时遇到问题,但没有任何显示,而且超大屏幕没有任何图片作为背景。
我的 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
完整示例在这里:
关于javascript - 在 dytime 基础上更改 div 背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37374676/
我一直在从事一个开源项目。它使用安装在 jdk8 镜像上的构建生成的 debian (.deb) 软件包创建 docker 镜像。 但最近我开始犯错误,不幸的是我无法克服它。一旦通过 Dockerfi
我正在尝试使这些卡片可点击以重定向到另一个屏幕,但我无法弄清楚 let cards = this.state.items.map(item => ( Actions.dog
我是一名优秀的程序员,十分优秀!