jquery 登陆窗口用户名、密码显示提示框

<html>
<head>
    <title>登录</title>
    <script src="js/jquery-1.4.1.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            $(".text_login").focus(function () {
                if ($(this).val() == 'user name' || $(this).val() == 'password') {
                    $(this).val('');
                }
                if ($(this).attr('id') == 'password1') {
                    $(this).hide();
                    $('#password2').show();
                    $('#password2').focus();
                }
            });
            $(".text_login").blur(function () {
                if ($(this).attr('id') == 'password2' && $(this).val() == '') {
                    $(this).hide();
                    $('#password1').show();
                    $('#password1').val('password');
                }
                else if ($(this).attr('id') == 'uname' && $(this).val() == '') {
                    $(this).val('user name');
                }
            });
        });
    </script>
</head>
<body>
    <table cellpadding="0" cellspacing="0" class="tb_login" border="0">
        <tr>
            <td>
                账号:
            </td>
            <td>
                <input type="text" name="uname" value="user name" id="uname" class="text_login" />
            </td>
        </tr>
        <tr>
            <td>
                密码:
            </td>
            <td>
                <input type="text" value="password" id="password1" class="text_login" />
                <input type="password" id="password2" style="display: none;" class="text_login" />
            </td>
        </tr>
    </table>
</body>
</html>
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值