登录 $(document).ready(function(){
$(".text_login").focus(function(){
if($(this).val()=='ユーザー名' || $(this).val()=='パスワード'){
$(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(); .val('パスワード');
}
else if($(this).attr('id')=='uname' && $(this).val()=='' ){
$(this).val('ユーザー名')
}
});