欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用JavaScript实现在页面中显示距离2017年中秋节的天数

程序员文章站 2022-09-08 15:06:32
废话不多说了,具体代码如下所示: &...

废话不多说了,具体代码如下所示:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>在页面中显示距离2017年中秋节的天数</title>
  <script type="text/javascript">
    function countdown(title,intime,divid) {
      var online=new date(intime); //根据参数定义时间对象
      var now=new date();   //定义当前系统时间
      var leave=online.gettime()-now.gettime(); //计算时间差
      var day=math.floor(leave/(1000*60*60*24))+1;
      if (day>1){
          divid.innerhtml="<b>----距离"+title+"还有"+day+"天!<br/>" ; //页面显示信息
      }else{
        if (day==1){
            divid.innerhtml="<b>----明天就是"+title+"啦!<br/>" ; //页面显示信息
        }else{
          if (day==0) {
            divid.innerhtml = "<b>----今天就是" + title + "呀!<br/>"; //页面显示信息
          }else{
              divid.innerhtml="<b>----哎呀!"+title+"已经过了!<br/>" ; //页面显示信息
            }
          }
        }
    }
  </script>
</head>
<body>
  <table width="350" height="450" border="0" align="center" cellspacing="0" cellpadding="0">
    <tr>
      <td valign="bottom">
        <table width="346" height="418" border="0" align="center" cellspacing="0" cellpadding="0">
          <tr>
            <td width="76"></td>
            <td width="270">
              <div id="countdown">
                <b>---</b></div>
                <script type="text/javascript">
                  countdown("2017年中秋节","10/4/2017",countdown); //调用javascript函数
                </script>
            </td>
          </tr>
        </table>
      </td>
    </tr>
  </table>
</body>
</html>

总结

以上所述是小编给大家介绍的 使用javascript实现在页面中显示距离2017年中秋节的天数,希望对大家有所帮助