1. 強制將非數字的文字去除,這是最簡單、最快的一種寫法。 <input type="text" onkeyup="this.value=this.value.replace(/[^\d]/,'')">.
確定! 回上一頁