网站地图    收藏   

主页 > 前端 > css教程 >

密码框显示提示文字 - html/css语言栏目:html.css

来源:自学PHP网    时间:2015-04-14 14:51 作者: 阅读:

[导读] html head title登录 title script type=text javascript src= jquery-1 3 2 min js script script $(document) ready(function(...

<html>  
<head>  
    <title>登录</title>  
    <script type="text/javascript" src="./jquery-1.3.2.min.js"></script>  
    <script>  
        $(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>  

 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论