var $timer = $('#timer'), count = 0; //set the interval var interval = setInterval(function() { $timer.html(count++); } ...
確定! 回上一頁