关于表单input的一些限制写法 1.默认禁止使用空格 <input type="text" class="write" onkeyup="this.value=this.value.replace(/\s+/g,'')"> 2.默认只能输入数字 <input type=" text" class="write" oninput="value=value.replace(/[^\d]/g,'')">