본문 바로가기
공부/자바스크립트 jQuery

텍스트 박스 클릭하면 안에 설명글 사라지는 거

by Ohming 2014. 4. 29.
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

<input type="text" id="quick_customer_name" name="quick_customer_name" style="width:65px; height:16px; ime-mode:active;" value="이름" onfocus="this.value=''" onblur="if(this.value =='') this.value='이름';" onkeydown="return fn_SubmitFromInput();" />




여기에서

value="이름" onfocus="this.value=''" onblur="if(this.value =='') this.value='이름';" onkeydown="return fn_SubmitFromInput();"


이 부분이 중요.

댓글