js 怎么验证密码是数字且是6位 2017-07-05 本文已影响0人 多想再见你一面 var reg = new RegExp(/^\d{6}$/); alert(reg.test('123456'));