我已经写了一个基本的javascript,根据我们的时间显示我们是否打开/关闭。它在JS小提琴中效果很好但是当我使用Jumi模块将它插入我的Joomla网站时,它被加载到页面的最底部。我对Javascript很新,所以可能是编码错误导致了这个问题。
<script>
function show_image(src, width, height, alt) {
var img = document.createElement("img");
img.src = src;
img.width = width;
img.height = height;
img.alt = alt;
document.body.appendChild(img);
}
var month = new Date().getMonth();
var time = new Date().getHours();
var day = new Date().getDay();
if (month > "3" && month < "10" && day == "6" && time > "19" && time <= "22") {
show_image("http://bizeebee.com/wp-content/uploads/2013/07/open-sign.jpg",500,450, "Powell is OPEN");
}
else { show_image("http://get.whotrades.com/u3/photoBB09/20171363290-0/blogpost.jpeg",500,450, "Powell is CLOSED");}
</script>
有什么想法吗?非常感谢帮助!
答案 0 :(得分:0)
如果使用window.onload?
启动页面加载功能window.onload = function () {
show_image(); }