bootstrap表单验证以及 bootstrapValidator 验证规则中英文切换

实现步骤超级简单 

bootstrapValidator 验证规则中:

        fields: {

            daibimingcheng: {

                validators: {

                    notEmpty: {

                        message:`请输入名称

                                 Please enter a name`

                    }

}


JQ:

入口函数中 这样写调用一下按钮的点击事件 用来显示中文的规则还是英文的规则

$(function(){

let langLan = sessionStorage.getItem("lang")

        if(!langLan || langLan == "ch") {

         $(".ch-lang").click()

        } else {

          $(".en-lang").click()

        }

      });

})

// 按钮点击事件点击

$(".ch-lang").click(function() {    // 这个是自定义的按钮 用来切换成中文

        sessionStorage.setItem("lang", "ch")

        $(".isEn").hide()   // 英文隐藏

        $(".isCh").show() .// 中文隐藏

        $('#token-form').bootstrapValidator('resetForm');

    })

    //英文点击

$(".en-lang").click(function() {

    sessionStorage.setItem("lang", "en")

    $(".isCh").hide()

    $(".isEn").show()

    $('#token-form').bootstrapValidator('resetForm');

})


html 显示部分

          

            

              联系电话

              TEL

              

                (请务必留下除邮箱以外的客服联系方式,否则无法通过审核)

                Please leave your customer service contact information except email

              

            

            

          


你可能感兴趣的:(bootstrap表单验证以及 bootstrapValidator 验证规则中英文切换)