如下:

//根据身份证号自动判断性别案例
function selectSex(obj) {
    var customercode = $(obj).val();
    if (customercode.length == 18) {
        var sexcode = customercode.substring(16, 17);
        var birth = customercode.substring(6, 10) + "-" + customercode.substring(10, 12) + "-" + customercode.substring(12, 14);
        //偶数为女性,奇数为男性
        if ((sexcode & 1) === 0) {
            $("#buyerSex").val("000");
        } else {
            $("#buyerSex").val("001");
        }
        $('#birth').datebox('setValue', birth);
    }
}

检查身份证件有效期输入是否正确

//检查身份证件有效期输入是否正确
function checkidefctdate()
{
    var idefctdate = $("#idefctdate").datetimebox("getValue");
    idefctdate = new Date(Date.parse(idefctdate.replace(/-/g, "/"))).valueOf();
    var nowDate = new Date().valueOf();
    if(idefctdate>nowDate){
        alert("证件有效期起始日期有误,请修改");
        return false;
    }
    return true;
}

根据easyUI时间控件取值参考

var xxx= $("#loanbegindate").datebox('getValue');

end!

相关文章:

  • 2021-12-20
  • 2022-12-23
  • 2021-11-22
  • 2022-12-23
  • 2021-09-29
  • 2021-12-04
  • 2022-12-23
猜你喜欢
  • 2021-09-27
  • 2022-12-23
  • 2022-01-18
  • 2022-02-22
  • 2022-12-23
相关资源
相似解决方案