아이디 패스워드를 치는곳에 “아이디”, “패스워드” 라는 글자이미지를 배경으로 깔아주고
클릭하면 글자가 사라지는 기능이다.

▼ 소스는 이렇게 짜준다.
<input type=”text” name=”” id=”” value=”” onFocus=”this.className=’input_focus'” onBlur=”if ( this.value == ” ) { this.className=’input_blur’ }” class=”input_blur” />

▼ 스타일시트 정의는 아래와 같이
.input_blur   {background: transparent url(“../images/leftLoginBoxIDBg.gif”) no-repeat;height:16px;width:450px;}
.input_focus   { background: #eee ; color: #000;height:16px;width:450px;}

Related Articles