希望這是有道理的,如果低於兩位數加0,JavaScript的
我有我的頁面,當它下降到一位數上一個javascript倒計時,如'9天,我需要追加0到開始。
我不知道這是可能的JavaScript所以認爲我會問這裏,使用我當前的代碼IM是
<!-- countdown -->
today = new Date();
expo = new Date("November 03, 2011");
msPerDay = 24 * 60 * 60 * 1000 ;
timeLeft = (expo.getTime() - today.getTime());
e_daysLeft = timeLeft/msPerDay;
daysLeft = Math.floor(e_daysLeft);
document.getElementById('cdown').innerHTML = daysLeft
看到這個問題的接受的答案:http://stackoverflow.com/questions/5366849/convert-1-to -0001-in-javascript - 你只需要改變'var pad =「00」;' –