• js根据身份证号自动截取出生日期并填充/根据身份证号自动判断性别案例


    如下:

    //根据身份证号自动判断性别案例
    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!

  • 相关阅读:
    中国式沟通
    10 表连接优化
    09 优化数据访问
    07 SQL优化技术
    06 执行计划
    04 系统和对象统计信息
    03 找出性能问题
    02 key concept
    Xpert 调优
    JavaWeb_常用功能_01_文件上传
  • 原文地址:https://www.cnblogs.com/xh_Blog/p/13565670.html
Copyright © 2020-2023  润新知