5
我正在嘗試構建一個類似http://codepen.io/GeoffStorbeck/full/RPbGxZ/的番茄鍾。秒的值隨機地到達NaN,然後在開始'break'後恢復正常。番茄鍾計時器:變量值爲'NaN'
$('#circle a').click(function() {
var timer = $('.time > span').html();
timer = timer.split(':');
var minutes = timer[0]; //Value of minutes
var seconds = timer[1]; //Value of seconds
var settimer = setInterval(function() {
seconds -= 1;
console.log(seconds);
if (seconds < 0 && minutes != 0) {
minutes -= 1;
minutes = String(minutes);
seconds = 59;
} else if (seconds < 10 && seconds.length != 2)
seconds = '0' + seconds;
if (minutes < 10 && minutes.length < 2)
minutes = '0' + minutes;
$('.time > span').html(minutes + ':' + seconds);
//Start break when session is completed
if (minutes == 0 && seconds == 0) {
$('.upper').find('h1').text('BREAK');
var time = $('#break').find('span').text();
$('.time > span').html('0' + time + ':00');
$('#circle a').trigger("click"); //Start timer for break
}
}, 1000);
});
這裏的鏈接到codepen http://codepen.io/ibrahimjarif/pen/wMKJWN
如何解決NaN的問題? 有沒有更好的方法來實現這個?
一些提示:不要使用'parseInt'沒有第二個參數('10')。使用'.toString()'而不是'String('...')'。使用數字_whole_time:'var minutes = Number(timer [0]),seconds = Number(timer [1]);',只能追加前導'0'或轉換爲字符串_ .html'功能。 – Xufox
@Xufox感謝您的輸入。修復了代碼。 – Ibrahim
@Xufox我應該刪除問題,因爲我解決了這個問題?我是新手。所以請建議。 – Ibrahim