var reg_char=/^[a-z,A-Z]+$/;//字符约束
var reg_int=/^[0-9]+$/;//数字约束
if(!reg_int.test($password)){
//console.log("输入错误");
$('#password').addClass('has-error');
$('#password span').text("密码只能由数字组成");
}else{
//console.log("输入正确");
$('#password').removeClass('has-error');
$('#password span').text(" ");
}
相关文章
- oracle中 merge into 的用法
- 关于C#中async/await的用法
- Cocos2d-x学习(十):cocos2d-x 2.0版本中CCScrollView的用法
- Cocos2d-x学习(八):cocos2d-x 2.0 中CCListView的用法
- 线程中的WaitForSingleObject和Event的用法
- 线程中CreateEvent和SetEvent及WaitForSingleObject的用法
- 无法从资产路径中的phonegap项目中使用jquery加载xml文件
- linux中grep和egrep的用法
- jquery 中 (function( window, undefined ) {})(window)写法详解(转)
- 【Java学习笔记之三十二】浅谈Java中throw与throws的用法及异常抛出处理机制剖析