及时验证自己公司通用验证信息

第一步:导入:jquery-validate2.0.0.js包

第二步:在需要验证的html页面添加,下述功能

 $(function() {
        $().lc_val_form({
            showMode: "2",
            realTime: "yes",
            viewSucess: "",
            viewError: "",
            isNull: "yes",
            subId: "#nextStep",
            fromId: "#billForm",
            embeddingMethod: "checkdata('"+state+"')",
            ajax: "no"
        });
    });

showMode:设置版本

subId:提交按钮id

 fromId:表格id

embeddingMethod:过滤方法,点击提交按钮,必须经过embeddingMethod里面的方法,才能通过

第三步:

 

进行列表操作验证

完结

你可能感兴趣的:(前端技术)