登录 <script> <br>$(document).ready(function(){ <br>$(".text_login").focus(function(){ <br>if($(this).val()=='user name' || $(this).val()=='password'){ <br>$(this).val(''); <br>} <br>if($(this).attr('id')=='password1'){ <br>$(this).hide(); <br>$('#password2').show(); <br>$('#password2').focus(); <br>} <br>}); <br>$(".text_login").blur(function(){ <br>if($(this).attr('id')=='password2' && $(this).val()==''){ <br>$(this).hide(); <br>$('#password1').show(); <br>$('#password1').val('password'); <br>} <br>else if($(this).attr('id')=='uname' && $(this).val()=='' ){ <br>$(this).val('user name'); <br>} <br>}); <br>}); <br></script>