JS 小技巧

让输入框只能输入正整数

 

<input type='text' onkeyup="value=value.replace(/^(0+)|[^\d]+/g,'')">

 

让输入框只能输入带小数点的数值

<input type="text" name="operate" class="layui-input" onkeyup="if(isNaN(value))execCommand('undo')" onafterpaste="if(isNaN(value))execCommand('undo')" />

 

posted @ 2021-08-16 16:38  张志健  阅读(32)  评论(0编辑  收藏  举报