input 태그에 placeholder 추가

<input type="text" name="" id="" class="" placeholder="Google 검색 또는 URL 입력" />






input에 커서가 활성화 됐을 때(포커스 되었을 때) placeholder 비활성화

<input type="text" name="" id="" class="" placeholder="Google 검색 또는 URL 입력" onfocus="this.placeholder = ''" />



input에 입력값이 없이 포커스 나갔을 때 placeholder 활성화

<input type="text" name="" id="" class="" placeholder="Google 검색 또는 URL 입력" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Google 검색 또는 URL 입력'" />

'HTML' 카테고리의 다른 글

[canvas] 사다리꼴 배경 만들기 (feat.canvas 삼각형 응용)  (0) 2018.01.22

+ Recent posts