如何允许电话号码添加特殊字符,例如-+(),我想允许用户输入数字,例如81-3-3456-7890,+ 6287739871345和(123)456-7890
$('#formAccess').validate({ // initialize the plugin
rules: {
phone: {
required: true,
maxlength:15,
number: true
}
}
});
预先感谢 FIDDLE DEMO