INPUT只能输入数字
Posted 擅长死循环
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了INPUT只能输入数字相关的知识,希望对你有一定的参考价值。
INPUT只能输入数字
input只能输入数字:
(只能输入数字,并且输入的值不能大于99),但是这样有个问题,就是当输入非数字字符时,输入框中所有的字符都会被清除
<input type="text" id="feePercentage" name="feePercentage" value=""
onkeyup="if(isNaN(value) || value > 99)execCommand('undo')" onafterpaste="if(isNaN(value) || value > 99)execCommand('undo')" style="margin-left:0px; width:50px;" onchange="calc()"/>
解决方案:
(只清除非数字,原先的数字保留)
<input class="text" id="policyNo" name="policyNo" type="text" onkeyup="this.value=this.value.replace(/\\D/g,'')" onafterpaste="this.value=this.value.replace(/\\D/g,'')"
maxlength="14" style="width:188px;" placeHolder="请输入批单号">
以上是关于INPUT只能输入数字的主要内容,如果未能解决你的问题,请参考以下文章