摘要:
打开mysql 的配置文件 my.cnf 查找方式:https://www.cnblogs.com/pxblog/p/13701211.html 在[mysqld]后面修改或添加 # The maximum amount of concurrent sessions the MySQL server 阅读全文
摘要:
$.validator.addMethod("isPhone", function(value,element) { var length = value.length; var mobile = /^1[3456789]\d{9}$/; return this.optional(element) 阅读全文