HTML DOM 입력 검색 비활성화 속성은 검색 필드를 비활성화할지 여부를 설정하거나 반환하는 데 사용됩니다. 요소가 비활성화되어야 함을 나타내는 true와 그렇지 않으면 false인 부울 값을 사용합니다. disabled 속성은 기본적으로 false로 설정됩니다. 그러나 비활성화된 요소는 기본적으로 회색으로 표시되어 클릭할 수 없습니다.
구문
다음은 −
의 구문입니다.비활성화된 속성 설정 -
searchObject.autofocus = true|false
여기에서 true=검색 필드가 비활성화되고 false=검색 필드가 비활성화되지 않습니다. 기본적으로 거짓입니다.
예시
입력 검색 비활성화 속성에 대한 예를 살펴보겠습니다 -
<!DOCTYPE html> <html> <body> <h1>Input search disabled Property</h1> <form> FRUITS: <input type="search" id="SEARCH1" name="fruits"> <form> <p>Disable the above search field by clicking on the DISABLE button</p> <button type="button" onclick="disableSearch()">DISABLE</button> <p id="Sample"></p> <script> function disableSearch() { document.getElementById("SEARCH1").disabled=true; document.getElementById("Sample").innerHTML = "The search field is now disabled" ; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
비활성화 버튼 클릭 시 -
위의 예에서 -
먼저 type=”search”, id=”SEARCH1”, name=”fruits”인 요소를 생성했습니다. 검색 필드는 양식 안에 있습니다 -
<form> FRUITS: <input type="search" id="SEARCH1" name="fruits"> <form>
그런 다음 사용자가 클릭할 때 disableSearch() 메서드를 실행하는 CHANGE 버튼을 만듭니다.
<button type="button" onclick="disableSearch()">DISABLE</button>
disableSearch() 메서드는 getElementById() 메서드를 사용하여 검색 유형이 있는 입력 요소를 가져오고 비활성화된 속성을 true로 설정합니다. 이렇게 하면 검색 필드를 더 이상 클릭할 수 없으며 사용자가 더 이상 검색 필드와 상호 작용할 수 없습니다. 이제 회색으로 변했습니다 -
function disableSearch() { document.getElementById("SEARCH1").disabled=true; document.getElementById("Sample").innerHTML = "The search field is now disabled" ; }