正則限制input負數輸入
...
...
js: html: <!--限制文本框只能輸入正數、小數、負數--> 附:https://funteas.com/topic/592f828e572bfb9c4d965ab0(關於正則的一些表達式) ...
1.文本框只能輸入數字代碼(小數點也不能輸入)<input onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')">< ...
<h1>js驗證輸入框內容</h1><br /><br /> 只能輸入英文<input type="text" onkeyup="value=value.replace(/[^a-zA-Z]/g,'')"><br />< ...