암호 상자에 프롬프트 문자 표시

1220 단어 웹 프런트엔드


	 
	
	
		$(document).ready(function(){
			$(".text_login").focus(function(){
				if($(this).val()=='user name' || $(this).val()=='password'){
					$(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();
					$('#password1').val('password');
				}
				else if($(this).attr('id')=='uname' && $(this).val()=='' ){
					$(this).val('user name');
				}
			});
		});
	



	

좋은 웹페이지 즐겨찾기