首页 > web前端 > js教程 > 正文

利用JavaScript实现在页面中显示距中秋节的天数效果

一个新手
发布: 2017-09-26 10:16:21
原创
1767 人浏览过
<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <title>在页面中显示距离2017年中秋节的天数</title>
    <script type="text/javascript">
        function countdown(title,Intime,pId) {            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){
                    pId.innerHTML="<b>----距离"+title+"还有"+day+"天!<br/>" ; //页面显示信息            }else{                if (day==1){
                        pId.innerHTML="<b>----明天就是"+title+"啦!<br/>" ; //页面显示信息                }else{                    if (day==0) {
                        pId.innerHTML = "<b>----今天就是" + title + "呀!<br/>"; //页面显示信息                    }else{
                            pId.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">
                            <p id="countDown">
                                <b>---</b></p>
                                <script type="text/javascript">
                                    countdown("2017年中秋节","10/4/2017",countDown); //调用JavaScript函数                                </script>
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </table></body></html>
登录后复制

以上是利用JavaScript实现在页面中显示距中秋节的天数效果的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!