코드 복사 코드는 다음과 같습니다. >< /head> $(" #email").focus(function(){ <BR>var email_txt = $(this).val(); <BR>if (email_txt == this.defaultValue) { <BR>$(this) .val(" "); <BR>} <BR>}) <BR>$("#email").blur(function(){ <BR>var email_txt = $(this).val(); <BR>if (email_txt == "") { <BR>$(this).val(this.defaultValue) <BR>} <BR>}) <BR> < ;/html> 효과 미리보기: