身份证正则

var reg = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/;
if (!reg.test(IDCard)) {return false;}
05-06 10:41