Posted on 

js 欄位數字輸入判斷

1
2
3
4
function isNumber(val){  
var reg = /^\[0-9\\.\]\*$/;
return reg.test(val);
}

用 js 判斷欄位輸入的是不是數字,包含可輸入 「.」 判斷