var Validator = {
// Email
isEmail: function(s) {
var p = "^[-!#$%&'* \./0-9=?A-Z^_`a-z{|}~] @[-!#$% &'* \/0-9=?A-Z^_`a-z{|}~] .[-!#$%&'* \./0-9=?A-Z^_`a-z{|}~] $" ;
return this.test(s, p);
},
//携帯電話番号
isMobile: function(s) {
return this.test(s, /^(180 |189|133|134|153|181)d{8}$/);
},
// 電話番号
isPhone: function(s) {
これを返します。test(s, /^[0-9]{3,4}-[0-9]{7,8}$/);
// 郵便番号
isPostCode: function(s) {
return this.test(s, /^[1-9][0-9]{5}$/);
},
/ / Number
isNumber : function(s, d) {
return !isNaN(s.nodeType == 1 ? s.value : s)
&& (!d || !this.test(s, '^-? [0-9]*\.[0-9]*$'));
},
// 空かどうかを判断します
isEmpty: 関数{
return !jQuery.isEmptyObject(s);
},
// 通常の一致
test: function(s, p) {
s = s.nodeType == 1 ? s.value : s;
return new RegExp(p).test(s);