﻿//验证表达式
function ValidExpress(obj, regEx) {
    var getValue = $get(obj).value;
    return regEx.test(getValue);
}