PHP
·
发表于 5年以前
·
阅读量:8312
检查是否为正整数
var str = "855"
var ex = /^d+$/;
if (ex.test(str)) {
// 则为整数
}
检查是否为正负整数
var value = 123;
/^(-|+)?d+$/.test(value)