input只能输入数字并限制长度

Posted SingleShadow

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input只能输入数字并限制长度相关的知识,希望对你有一定的参考价值。

<style>

/*在chrome下移除input[number]的上下箭头*/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
-webkit-appearance: none !important;
margin: 0;
}
/*在firefox下移除input[number]的上下箭头*/
input[type="number"]{-moz-appearance:textfield;}

<style>

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

以上是关于input只能输入数字并限制长度的主要内容,如果未能解决你的问题,请参考以下文章

QT中如何设置comboBox只能输入数字

input 各种限制

限制input只能输入数字/数字和小数点

vue element组件库<el-input>限制只能输入数字,且保留小数后两位

javascript验证代码总结

求一段JS的函数代码....