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>
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!