整理經常使用的一些 關於input的正則

一、 不能輸入數字 正則表達式         <input onkeyup="value=value.replace(/[\d]/g,'') " type="text" />   二、 只能輸入數字          <input onkeyup="value=value.replace(/\D/g,'')" type="text" />  三、只能輸入數字和英文的          <inpu
相關文章
相關標籤/搜索