当前位置:   article > 正文

JavaScript 验证 API中的setCustomValidity()方法

setcustomvalidity

setCustomValidity()方法:

设置 input 元素的 validationMessage 属性,用于自定义错误提示信息的方法。

注意:使用 setCustomValidity 设置了自定义提示后,validity.customError 就会变成true,则 checkValidity() 总是会返回false,导致无论重新输入的格式正确与否,都会提示设置好的错误信息。

解决办法:用obj.validity.patternMismatch判断,如果输入的格式正确,就将setCustomValidity 清空,使JavaScript重新判断validity.customError的值。

参考:http://www.runoob.com/js/js-validation-api.html

在该链接中,提到三种清空setCustomValidity的方法,但经过测试,只有第一种方法setCustomValidity(’’)可以使用。

复制代码

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>未使用setCustomValidity()方法</title>
</head>
<body>
    <form name="test" action="" method="post">
        <input id="input" type="text" required="required" placeholder="请输入4-11位字母加数字的密码" pattern="^(?![0-9]+$)(?![a-zA-Z]+$)[0-9a-zA-Z]{4,14}$" oninput="this.setCustomValidity('')">
        <input type="submit" onclick="setMyText()">
    </form>
    <script type="text/javascript">
        function setMyText(){
            var obj = document.getElementById("input");
            if (obj.validity.patternMismatch === true) {
                obj.setCustomValidity("密码是必填的");
            } else {
                obj.setCustomValidity('');
            }
        }
    </script>
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/110822
推荐阅读
相关标签
  

闽ICP备14008679号