【해결책】
1. 준비
(1) 입력창
(2 ) CSS 코드
input.helpText { 색상: #aaa;}
(3) 변환 방법
function switchText()
{
if ($(this).val() == $(this).attr('title'))
$(this ).val('') .removeClass('helpText');
else if ($.trim($(this).val()) == '')
$(this).addClass(' helpText').val($ (this).attr('title'))
}
(4) 구체적인 구현
$('input[type=text][title!=""]').each(function () {
if ($.trim($(this).val()) == '') $(this).val($(this).attr('title'))
if ($(this).val() = = $(this).attr('title')) $(this).addClass('helpText')
}).focus(switchText).blur(switchText); ;
$(' form').submit(function() {
$(this).find('input[type=text][title!=""]').each(함수 () {
if ($( this).val() == $(this).attr('title')) $(this).val('')
}); }));
2. 참고 기사
http://webservices.blog.gustavus.edu/2008/06/23/text -input-example-text-with-jquery /