ホームページ  >  記事  >  ウェブフロントエンド  >  パスワードボックスにプロンプ​​トテキストが表示される

パスワードボックスにプロンプ​​トテキストが表示される

WBOY
WBOYオリジナル
2016-05-16 17:23:53936ブラウズ
复制代码代码如下:



登录


$(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 までご連絡ください。