校驗 正則表達式 小數位數不能超過三位

//驗證值小數位數不能超過三位   jQuery.validator.addMethod("three", function (value, element) {       var three = /^-?\d+(\.\d{1,3})?$/;       return this.optional(element) || (three.test(value));   }, $.validator.
相關文章
相關標籤/搜索