1

clipboard.png

各浏览器表现

<input type="number" />

chrome
clipboard.png

除数字字符,只可输入e和.

IE
clipboard.png

除数字字符,其他字符均可输入,无报错

Firefox
clipboard.png

除数字字符,其他字符均可输入,但会报错

移除箭头

//谷歌去除箭头 
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

//火狐去除箭头 
input[type="number"] {
    -moz-appearance: textfield;
}

maxlength无效

<input type="number" oninput="if(value.length>5)value=value.slice(0,5)" /> 

step/min/max

允许小数值

<input type="number" placeholder="1.0" step="0.01" min="0" max="10">

小知识点

<label for="ticketNum">Number of tickets you would like to buy:</label>
<input id="ticketNum" type="number" name="ticketNum" value="0">

clipboard.png

配合label for,点击label,就可让input获取焦点。


zhouzhou
1.5k 声望76 粉丝

web前端


引用和评论

0 条评论