首頁  >  文章  >  web前端  >  密碼框顯示提示文字jquery範例_jquery

密碼框顯示提示文字jquery範例_jquery

WBOY
WBOY原創
2016-05-16 17:23:53979瀏覽
複製程式碼程式碼如下:


登入


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











表>
身體>


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn