Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML onsearch 이벤트 속성

<시간/>

HTML onsearch 이벤트 속성은 사용자가 HTML 문서에서 type="text"인 HTML 입력 요소에서 "Enter" 키를 누르면 트리거됩니다.

구문

다음은 구문입니다 -

<input type=”search” onsearch=”script”>

HTML onsearch 이벤트 Attribute −

의 예를 살펴보겠습니다.

예시

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color: #000;
      height: 100vh;
      background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat;
      text-align: center;
      padding: 20px;
   }
   input {
      border: 2px solid #fff;
      background: transparent;
      height: 2rem;
      padding: 10px;
      width: 200px;
   }
   ::placeholder {
      color: #000;
   }
   .show {
      font-size: 1.5rem;
      font-weight: bold;
   }
</style>
</head>
<body>
<h1>HTML onsearch Event Attribute Demo</h1>
<input type="search" onsearch="searchFn()" placeholder="Search here">
<p>Enter what you want to search and then hit "Enter" key</p>
<div class="show"></div>
<script>
   function searchFn() {
      document.body.style.background = "linear-gradient(45deg, #8BC6EC 0%, #9599E2 100%) no-repeat";
      document.querySelector(".show").innerHTML = "You search: " + document.querySelector("input").value;
   }
</script>
</body>
</html>

출력

HTML onsearch 이벤트 속성

검색 필드에 검색 텍스트를 입력한 다음 "Enter 키를 누릅니다. ” 키를 누르면 onsearch 이벤트 속성이 작동하는 방식을 관찰할 수 있습니다.

HTML onsearch 이벤트 속성