当前位置:   article > 正文

原生javascript方法checkValidity验证金额转账_js checkvalidity()

js checkvalidity()

body

<!--checkValidity() 方法验证-->
        <div>
          转账金额(1):<input id="rmb1" type="number" min="1" max="200000" name="RMB1" required="" /> 
        </div> 
         <p style="color: red;" id="rmb1msg"></p>      
       <!--setCustomValidity()方法验证-->
        <div>
          转账金额(2):<input id="rmb2" type="number" min="1" max="200000" name="RMB2" /> 
        </div> 
         <p style="color: red;" id="rmb2msg"></p> 
        <button onclick="LoginCheckValidity()" type="button" style="height: 40px; width: 100px; color: black; font-size: 12px;">转账</button>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

script

/*约束验证 DOM 方法*/
function LoginCheckValidity() {
    var txt = "";   /*1.checkValidity() 方法验证*/
    var rmb1 = document.getElementById("rmb1"); // 获得账号输入框的内容
    if (rmb1.checkValidity() == false) {
        txt = rmb1.validationMessage;
    } else {
        txt = "转账成功!";
    }
    document.getElementById("rmb1msg").innerHTML = txt;
    /*2.setCustomValidity()方法验证*/
    var rmb2 = document.getElementById("rmb2"); // 获得金额输入框的内容
    rmb2.setCustomValidity(""); // 取消自定义提示的方式
    if (rmb2.value == null || rmb2.value == "") {
        rmb2.setCustomValidity("请输入金额!");
    } else if (rmb2.validity.rangeUnderflow) {
        rmb2.setCustomValidity("金额不小于1元!");
    } else if (rmb2.validity.rangeOverflow) {
        rmb2.setCustomValidity("金额不大于200000万!");
    } else {
        rmb2.setCustomValidity("转账成功!");
    }
    document.getElementById("rmb2msg").innerHTML = rmb2.validationMessage;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/110835
推荐阅读
相关标签
  

闽ICP备14008679号