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)

高洛峰
Release: 2016-12-03 15:48:41
Original
1905 people have browsed it

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;
}
Copy after login


Related labels:
js
source:php.cn
Statement of this Website
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
Latest Issues
Where is js written?
From 1970-01-01 08:00:00
0
0
0
js addClass not working
From 1970-01-01 08:00:00
0
0
0
js file code not found
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template