Commit f0493c63 by Teeradone Darunnat

teeradone addValidate passwordtext

parent be304415
...@@ -26,6 +26,9 @@ ...@@ -26,6 +26,9 @@
| 19. ckquarter-min ,Example 'ckquarter-min' = '2' | 19. ckquarter-min ,Example 'ckquarter-min' = '2'
| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------
*/ */
jQuery.validator.addMethod("passwordtext", function (value, element) {
return this.optional(element) || /^([a-zA-Z0-9])+$/.test(value);
}, "รหัสผ่านต้องเป็นตัวอักษร a-z, A-Z และ 0-9 ความยาวขั้นต่ำ 6 ตัวอักษร.");
jQuery.validator.addMethod("emailtext", function (value, element) { jQuery.validator.addMethod("emailtext", function (value, element) {
return this.optional(element) || /^([a-zA-Z0-9@_.])+$/.test(value); return this.optional(element) || /^([a-zA-Z0-9@_.])+$/.test(value);
}, "โปรดระบุที่อยู่อีเมล์ที่ถูกต้อง."); }, "โปรดระบุที่อยู่อีเมล์ที่ถูกต้อง.");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment