您的位置:首页 > 其它

密码输入框提预先提示后内容效果实现

2013-05-29 10:28 330 查看
欢迎加QQ群14670545 探讨
<input type="text" id="txtKeyClick" value="username" />
        <input type="password" id="txtPwd" class="hide" />
$("#txtKeyClick").click(function () {
                $(this).hide();
                $("#txtPwd").show().focus();
            });
            $("#txtPwd").bind('blur', function () {
                if ($.trim($(this).val()) == "") {
                    $(this).hide();
                    $("#txtKeyClick").show();
                }
            });

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐