码迷,mamicode.com
首页 > 其他好文 > 详细

jq 两种倒计时

时间:2018-07-26 16:16:19      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:return   开始   col   cond   UNC   doc   child   eee   style   

第一种:

        //暂停时间
        var delay = (function () {
            var timer = 0;
            return function (callback, time) {
                clearTimeout(timer);
                timer = setTimeout(callback, time);
            };
        })();

        //5秒后停止下注
        delay(function () {
            var i=0;
            var oTd = document.getElementById(‘td1‘);
            var children = oTd.children;
            for(i = 0; i < children.length; i++) {
                children[i].disabled=true;
                children[i].style.backgroundColor = "#EEEEEE";
            }
        }, 5000);

第二种:

        Surplustime(5);
        // 下注倒计时函数
        function Surplustime(seconds){
            if(seconds == 0){
                clearTimeout(timer);
                Pushtime(5);
                return;
            }
            // seconds--;
            $(‘.timetxt‘).text(‘开始倒计时:‘);
            $(‘.overtime‘).text((seconds) + ‘秒后 停止下注‘);
            var timer = setTimeout(function(){
                Surplustime(seconds);
            },1000);
            seconds--;
        }

 

jq 两种倒计时

标签:return   开始   col   cond   UNC   doc   child   eee   style   

原文地址:https://www.cnblogs.com/ycqi/p/9372043.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!