JS中正则表达式的用法

验证0-9个阿拉伯数字

function regIsDigit(fData)
{
    var reg = new RegExp("^[0-9]$");
    return (reg.test(fData));
}

相关推荐