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')" />