HTML DOM 입력 검색 필수 속성은 요소의 필수 속성과 연결됩니다. 필수 속성은 양식이 서버에 제출되기 전에 일부 검색 필드를 채워야 하는지 여부를 설정하고 반환하는 데 사용됩니다. 이렇게 하면 필수 속성이 있는 검색 필드가 사용자에 의해 비어 있는 경우 양식이 제출되지 않습니다.
구문
다음은 −
의 구문입니다.필수 속성 설정 -
searchObject.required = true|false
여기서 true는 검색 필드를 채워야 함을 나타내고 false는 양식을 제출하기 전에 필드를 채우는 선택 사항을 나타냅니다.
예시
입력 검색 필수 속성에 대한 예를 살펴보겠습니다 -
<!DOCTYPE html> <html> <body> <h1>Input search required property</h1> <p>Check if the above field is mandatory to be filled or not by clicking the below button</p> <form action="/Sample_page.php"> FRUITS: <input type="search" id="SEARCH1" name="fruits" required> <input type="submit"> </form> <br> <button onclick="checkReq()">CHECK</button> <p id="Sample"></p> <script> function checkReq() { var Req=document.getElementById("SEARCH1").required; if(Req==true) document.getElementById("Sample").innerHTML="The search field must be filled before submitting"; else document.getElementById("Sample").innerHTML="The search field is optional and can be left blank by the user"; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
CHECK 버튼을 클릭하면 -
필수 속성이 true로 설정되고 제출을 클릭하면 -