美文网首页
js 常用function

js 常用function

作者: 半夜成仙 | 来源:发表于2021-12-03 15:35 被阅读0次
## 倒计时

<html>
<head>
    <meta charset="UTF-8">
    <title>js简单时分秒倒计时</title>
    <script type="text/javascript">
        function countTime() {
            //获取当前时间
            var date = new Date();
            var now = date.getTime();
            //设置截止时间
            var str="2018/3/17 00:00:00";
            var endDate = new Date(str);
            var end = endDate.getTime();

            //时间差
            var leftTime = end-now;
            //定义变量 d,h,m,s保存倒计时的时间
            var d,h,m,s;
            if (leftTime>=0) {
                d = Math.floor(leftTime/1000/60/60/24);
                h = Math.floor(leftTime/1000/60/60%24);
                m = Math.floor(leftTime/1000/60%60);
                s = Math.floor(leftTime/1000%60);
            }
            //将0-9的数字前面加上0,例1变为01
            d = checkTime(d);
            h = checkTime(h);
            m = checkTime(m);
            s = checkTime(s);
            function checkTime(i){
                if (i<10) {
                    i = "0"+i;
                }
                return i;
            }
            //将倒计时赋值到div中
            document.getElementById("_d").innerHTML = d+"天";
            document.getElementById("_h").innerHTML = h+"时";
            document.getElementById("_m").innerHTML = m+"分";
            document.getElementById("_s").innerHTML = s+"秒";
            //递归每秒调用countTime方法,显示动态时间效果
            setTimeout(countTime,1000);

        }
    </script>
</head >
<body onload="countTime()" >
    <div>
        <span id="_d">00</span>
        <span id="_h">00</span>
        <span id="_m">00</span>
        <span id="_s">00</span>
    </div>
</body>
</html>

相关文章

  • js 常用function

  • js的常用方法

    js 常用方法 modal框清楚缓存 $("#modal").click(function(){ //清除boot...

  • JS初始化

    js中初始化常用的三种方法: //方法一:(jQuery)$(document).ready(function()...

  • js常用通用函数

    js常用通用函数,日常js应用,js技巧 1.写一个function,清除字符串前后的空格; 2.已经知道字符串“...

  • js function/Function

    函数定义函数是由这样的方式进行声明的:关键字 function、函数名、一组参数,以及置于括号中的待执行代码。函数...

  • js Function常用方法 -- 图画显示

    Tips: 1.js 中function实际上就是对象,函数名是指针,所以不存在函数重载 2. 使用不带括号的函数...

  • 品牌列表

    导入JS $(function () { $('#btn').click(function () { ...

  • 注册

    $(function(){ $('#_js_loginBtn').on('click',function(e){ ...

  • js中(function(){}()),(function(){

    参考:https://blog.csdn.net/stpice/article/details/80586444 ...

  • 常用function

    获取URL参数 金额按,千位分隔

网友评论

      本文标题:js 常用function

      本文链接:https://www.haomeiwen.com/subject/vgtmxrtx.html