by zhangxinxu 2009-12-12 19:05

密码输入错误后的自动选中密码

请输入错误密码:例如123

<script type="text/javascript"> var obj = { pwd: $("#zxxPwdTest"), btn: $("#zxxSureBtn"), rem: $("#zxxRemind"), reg: /^\w{6,20}$/ }; obj.btn.click(function(){ //正则判断 if(!obj.reg.test(obj.pwd.val())){ obj.rem.css("color", "#ff3300").html("密码不正确"); obj.pwd.focus().select(); }else{ obj.rem.css("color", "#999999").html("请输入错误密码便于测试"); } return false; }); </script>