天天看點

限制html文本框input隻能輸入數字和小數點

代碼:

<input type="text" class="txt" name="qty" value="" onkeyup="this.value=this.value.replace(/[^0-9\.]/g,'')" />