登入 $(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('用戶名');
}
});
腳本>
頭>