我有一個帶停止按鈕的無限循環的Javascript計時事件。將秒轉換爲天,小時,分和秒
它將顯示數字時啓動按鈕是click.Now我想要這個號碼轉換爲像4小時後,3分鐘,50秒
HTML
<p class="start">Start</p>
<p class="end">End</p>
<p class="hide_div">
<input type="text" id="txt" />//display numbers eg 12345
</p>
CSS
.hide_div {
display: none;
}
.end {
display: none;
}
js
<script>
$(".start").on("click", function() {
//var start = $.now();
//alert(start);
//console.log(start);
doTimer();
$(".end").show();
$(".hide_div").show();
});
$(".end").on("click", function() {
stopCount();
});
</script>
<script>
var c=0;
var t;
var timer_is_on=0;
function timedCount()
{
document.getElementById('txt').value=c;
c=c+1;
t=setTimeout(function(){timedCount()},1000);
}
function doTimer()
{
if (!timer_is_on)
{
timer_is_on=1;
timedCount();
}
}
function stopCount()
{
clearTimeout(t);
timer_is_on=0;
}
如何把123456這樣的數字轉換爲1天,4小時,40分鐘,45秒?
您解決了這個問題? – C2486