function ValidateIsDecial(sValue) {return (!sValue && !!!sValue && /^[0-9]{1,10}(\.[0-9]{0,2})?$/.test(sValue));
};
驗證 decimal(12,2)
?
小數點前允許10位,小數點后允許2位
1234567890 true
12345678901 false
0123456789 true
01234567891 false
123.11 true
123. true
123.123 false
?