在我的遊戲中,我將計時器設置爲30000ms(30秒)。當計時器結束時,遊戲結束。我想向用戶展示計時器,讓他們知道他們離開了多久。我怎麼會做這個,我試圖做這樣的:顯示計時器倒計時
setTimeout(function() {
$("#message").html('Thank you for playing. </br> You answered </br>' + hit + '/' + attempted + ' correctly. </br> Press "Play" to start again.').fadeIn('slow');
$(".character").fadeIn('slow');
}, 500);
});
}, 30000).show('#timer'); //here I am trying to display the time in the "#timer"
}
我想我接近這一切錯誤可以有人給我的方向是正確的呢?
小提琴:http://jsfiddle.net/cFKHq/8/
'setTimeout'不是什麼jQuery,所以不要總是用jQuery的方式來思考。 –
代碼是這個問題拋出一個錯誤。 –