手機號碼的限制(11為數字)
阿新 • • 發佈:2017-07-31
hone func num learn one ret 小數 spa title
電話號碼限制
<
input
type
=
"text"
id
=
"phone"
maxlength
=
"11"
onkeyup
=
"this.value=this.value.replace(/\D/g,‘‘)"
/>
兩位小數點限制的js
input 框中寫法
<input clas="easyui-validatebox" type="text" name="expectMoney" onkeyup=‘clearNoNum(this)‘ />元 0.00
function clearNoNum(obj) {
obj.value = obj.value.replace(/[^\d.]/g,""); //清除"數字"和"."以外的字符
obj.value = obj.value.replace(/^\./g,""); //驗證第一個字符是數字而不是
obj.value = obj.value.replace(/\.{2,}/g,"."); //只保留第一個. 清除多余的
obj.value = obj.value.replace(".","$#$").replace(/\./g,"").replace("$#$",".");
obj.value = obj.value.replace(/^(\-)*(\d+)\.(\d\d).*$/,‘$1$2.$3‘); //只能輸入兩個小數
}
手機號碼的限制(11為數字)