Home  >  Article  >  Web Front-end  >  How to check non-zero negative integers using JS regular code

How to check non-zero negative integers using JS regular code

php中世界最好的语言
php中世界最好的语言Original
2018-03-30 14:24:291927browse

This time I will show you how to verify non-zero negative integers using JS regular expressions. What are the precautions for verifying non-zero negative integers using regular expressions in JS? The following is a practical case, let’s take a look.

Not much to say, please look at the code

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title></title>
  <script type="text/javascript">
    function validation() {
      var val = document.getElementById("txtNumber").value;
      var regu = /^\d+$/;
      //var regu = /^[1-9]\d*|0$/; 亲测可用
      if (val != "") {
        if (!regu.test(val)) {
          document.getElementById("labResult").style.color = "red";
          document.getElementById("labResult").innerHTML = "验证失败!";
        } else {
          document.getElementById("labResult").style.color = "green";
          document.getElementById("labResult").innerHTML = "验证成功!";
        }
      }
    }
  </script>
</head>
<body>
  <input id="txtNumber" name="txtNumber" type="text" />
  <input id="btnValidation" name="btnValidation" type="button" value="校验" onclick="validation()" />
  验证结果:<label id="labResult" ></label>
</body>
</html>
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to verify non-zero positive integers with JS regular numbers

Detailed explanation of regular digital verification ( Code attached)

The above is the detailed content of How to check non-zero negative integers using JS regular code. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn