个人便利记录
1.input快速设置输入限制
只能输入正数和小数
<input type='text' oninput="this.value=this.value.replace(/[^\d^\.]/g,' ')">
只能输入正整数
<input type='text' oninput="this.value=this.value.replace(/^(0+)|[^\d]+/g,'')">
只能输入中文
<input type="text" οninput="this.value=this.value.replace(/[^\u4e00-\u9fa5]/g,'')">
只能输入英文
<input type="text" οninput="this.value=this.value.replace(/[^a-zA-Z]/g,'')">