求一段js代码,根据早晚时间改变图片

<styletype="text/css">#mg1{position:absolute;width:480px;height:205px;left:220px;top:... <style type="text/css">
#mg1 {position:absolute; width:480px; height:205px; left:220px; top:125px;}
#mg2 {position:absolute; width:480px; height:205px; left:220px; top:125px; }
</style>
</head>
<body>
<div><img id="mg1" src="1.jpg" /></div>
<div><img id="mg2" src="2.jpg" /></div>
<script type="text/javascript">
window.onload = function() {
function ChangePic(){
var now = new Date()();
var curr_hour = now.getHours();
if(curr_hour >= 7 && curr_hour < 18)
{
document.getElementById("mg1").style.background = 'url(1.jpg)';
}
else
{
document.getElementById("mg2").style.background = 'url(2.jpg)';
}
};
ChangePic();
};
</script>
</body>
</html>

这是我自己修改的 但是修改时间,图片没有变化
展开
 我来答
lkiarest
2013-11-29 · TA获得超过543个赞
知道小有建树答主
回答量:761
采纳率:100%
帮助的人:415万
展开全部
<html>
<head>
<style type="text/css">
#mg1 {position:absolute; width:480px; height:205px; left:220px; top:125px;}
</style>
</head>
<body>
<div><img id="mg1" src="1.jpg" /></div>
<script type="text/javascript">
window.onload = function() {
 function ChangePic(){    
     var now = new Date();    
     var curr_hour = now.getHours();    
     alert(curr_hour);
     if(curr_hour >= 7 && curr_hour < 18) 
     {    
     document.getElementById("mg1").src = 'url(1.jpg)';   
      }    
      else 
      {    
      document.getElementById("mg1").src = 'url(2.jpg)';    
      }
  }; 
  ChangePic();
};
</script>
</body>
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式