input type float in HTML5
สามารถใช้ step ได้ตามตัวอย่าง
1 2 |
<label for="totalAmt">Total Amount</label> <input type="number" step="0.01" id="totalAmt"> |
ตัวอย่างเพิ่มเติม
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<form> <input type=number step=1 /> Step 1 (default)<br /> <input type=number step=0.01 /> Step 0.01<br /> <input type=number step=any /> Step any<br /> <input type=range step=20 /> Step 20<br /> <input type=datetime-local step=60 /> Step 60 (default)<br /> <input type=datetime-local step=1 /> Step 1<br /> <input type=datetime-local step=any /> Step any<br /> <input type=datetime-local step=0.001 /> Step 0.001<br /> <input type=datetime-local step=3600 /> Step 3600 (1 hour)<br /> <input type=datetime-local step=86400 /> Step 86400 (1 day)<br /> <input type=datetime-local step=70 /> Step 70 (1 min, 10 sec)<br /> </form> |
ที่มา
https://stackoverflow.com/questions/19011861/is-there-a-float-input-type-in-html5
ป้ายกำกับ:HTML, html5, input type float, input type number, step