Home >Web Front-end >JS Tutorial >JS method to determine whether the input string is a number (regular expression)

JS method to determine whether the input string is a number (regular expression)

高洛峰
高洛峰Original
2016-12-03 15:48:411862browse

Examples are as follows:

if (!checkNumber(gopage_val)) {
  alert("请输入正确页数(数字)");
  return false;
 }
 
 
 
 
//验证字符串是否是数字
function checkNumber(theObj) {
  var reg = /^[0-9]+.?[0-9]*$/;
  if (reg.test(theObj)) {
    return true;
  }
  return false;
}


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