我有兩個代表小時和分鐘的input
字段。顯示輸入數字字段上的前導零點
<input type="number" min="0" max="24" step="1" value="00" class="hours">
<input type="number" min="0" max="0.60" step="0.01" value="00" class="minutes">
時顯示爲:
0:0
或者:
5:3
有沒有顯示它的方式:
00:00
或者:
05:03
即在24小時的數據格式(人建議之前,我不能用TYPE = 「時間」)。
看看這個線程http://stackoverflow.com/questions/14638018/current-time-formatting-with-javascript。這不完全是你在做什麼,但JavaScript的格式化小時和分鐘應該工作。 –
重複? http://stackoverflow.com/questions/20684737/force-leading-zero-in-number-input –
其實這個:http://stackoverflow.com/questions/6312993/javascript-seconds-to-time-string-with -format -hhmmss –