首頁 > jquery > jq判断长度不能小于8

jq判断长度不能小于8

在 jQuery 中可以通过以下方式判断输入内容的长度是否小于 8,如果小于 8 则不通过:


<!DOCTYPE html>
<html>

<head>
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>

<body>
  <input type="text" id="inputField">
  <button id="checkButton">检查</button>
  <script>
    $('#checkButton').click(function () {
      const inputValue = $('#inputField').val();
      if (inputValue.length < 8) {
        alert('输入不符合要求,长度不能小于 8。');
      } else {
        alert('输入符合要求。');
      }
    });
  </script>
</body>

</html>

相关资讯
最新资讯
IT兄弟 IT兄弟-是一家分享开发中常遇到的技术问题解决方案,也是站长们记录技术分享文章的平台。 琼ICP备2022012332号