简单的jquery第二个计数器

时间:2010-06-15 22:32:55

标签: javascript jquery count

每秒将变量增加1的最简单方法是什么?

4 个答案:

答案 0 :(得分:34)

var counter = 0;
setInterval(function () {
  ++counter;
}, 1000);

此外,如果您需要再次关闭它,这可以实现:

var counter = 0;
var myInterval = setInterval(function () {
  ++counter;
}, 1000);

// to stop the counter
clearInterval(myInterval);

答案 1 :(得分:0)

最简单的方法是setInterval("x++",1000);,其中x++可以用您的增量替换。例如:

<强>的JavaScript / jQuery的

var x=0;

setInterval("x++",1000); // Increment value every second

// Let's just add a function so that you can get the value
$(document).ready(function () {
  $("#showval").click(function(){
    alert(x);
  });
});

<强> HTML

<a href="#" id="showval">Show value</a>

答案 2 :(得分:0)

更好的方法是通过封闭功能:

function setIntervalTimes(i_func, i_sleep, i_timesRun){
        var timesRun = 0;
        var interval = setInterval(function(){
            timesRun += 1;
            if(timesRun === i_timesRun){
                clearInterval(interval);
            }
            i_func();
        }, i_sleep);
    },

答案 3 :(得分:0)

功能计时器(秒,元素)
作者:ZMORA JLB
电子邮件:zmorajlb [monkey] gmail.com

包含打包功能计时器:

eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+    ((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String))   {while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};  c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('2   p=\'- s tńu -\';h m(c){2 g=d.f(c/r);2 i=d.f((c/e)%e);2 8=c%e;2 4=\'\';7(g>0){4=4+\'\'+g+\' w \'}7(i>0){4=4+\'\'+i+\' q \'}7(8>0){4=4+\'\'+8+\' v\'}y 4}h D(8,j,E){2 l=b a();2 5=b a();2 o=b a();2 9=b a();9=8;l=(x*d.f(d.B()*6)+1)*3;5=0;o=A(h(){k=9-5;7(5<9){5++}7(5==9){$(\'#\'+j).n(p)}z{$(\'# \'+j).n(m(k))}},C)}',41,41,'||var||out|counter||if|seconds|destination|Array|new|val|Math|60|floor|hours|function|minutes|element|remaining|number|secondsToText|html|interval|end_text|minut|3600|budowa|zako|czona|sekund|godzin|33|return|else|setInterval|random|1000|timer|method'.split('|'),0,{}))

使用

$(document).ready(function() {
timer(8, 'time1'); // seconds and element
timer(3605, 'time2'); // seconds and element
});

first: <span>Counting "8" seconds</span>
<span id="time1">--:--</span>

第二名:计算“3605”秒 - : -