notEmpty: /\S/, // 非空
integer:/^[1-9]\d*$/, //正整数
integerp:/^[+]{0,1}(\d+)$|^[+]{0,1}(\d+\.0)$/,//正整数包括正整数.0
decimal:/^((0{1}\.\d{1,2})|([1-9]\d*\.{1}\d{1,2})|([1-9]+\d*))$/, //两位小数
noNinteger:/^[1-9]\d*|0$/,//非负整数
floatNum:/^\d+(\.\d+)?$/, //非负浮点数
noempty:/\S/, //不为空
ipAdress:/^((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?)$/,///ip地址
macAdress:/^[A-F0-9]{2}(-[A-F0-9]{2}){5}$|^[A-F0-9]{2}(:[A-F0-9]{2}){5}$/,//mac地址