개발자의 끄적끄적

[html/css] html input onsearch event example input onsearch 이벤트 예제 본문

개발/html & css

[html/css] html input onsearch event example input onsearch 이벤트 예제

효벨 2022. 1. 8. 01:00
728x90
반응형

[html/css] html input onsearch event example input onsearch 이벤트 예제

 

 

html 에서

 

input 태그를 사용하다보면

 

태그에 내용 입력시 x 버튼이 활성화되고

 

x 버튼 클릭시 입력되었던 내용을 사라지게 처리하곤 합니다.

 

 

 

그중에서 실제 서버와 검색을 연동하다보면

 

x 버튼 클릭시에도 이벤트를 받아서 원래 초기 목록을 가져와야 하는

 

경우가 종종 있습니다.

 

그럴때는 아래와 같이

 

onsearch 이벤트를 이용하시면 됩니다!

 

<input type="search" onsearch="alert('test')" placeholder="검색"/>

 

참고들 하세요!

반응형
Comments