键盘事件

        .setpsw {
            margin: 0 auto;
            height: 50px;
            overflow: hidden;
            display: inline-block;
        }

        .setpsw input {
            width: 30px;
            height: 30px;
            padding: 0 0;
            float: left;
            margin: 5px;
            text-align: center;
            line-height: 21px;
            border: 1px solid rgba(0, 0, 0, .2);
            border-radius: 3px;
            outline: 0;
            background-color: #fff;
        }
    
 
输入6位数字密码

显示输入字数及提示

    function(){
        var count=$(this).val().length;
        $("#textcount").html(count);
        if(count>70){
            $("#tip").show();
        }else{
            $("#tip").hide();
        }
    }
)

你可能感兴趣的:(键盘事件)