HTML DOM 입력 검색 양식 속성은 지정된 입력 검색 필드가 포함된 양식 참조를 반환하는 데 사용됩니다. 검색 필드가 양식 외부에 있으면 단순히 NULL을 반환합니다. 이 속성은 읽기 전용입니다.
구문
다음은 입력 검색 양식 속성에 대한 구문입니다 -
searchObject.form
예시
HTML DOM 입력 검색 양식 속성의 예를 살펴보겠습니다 -
<!DOCTYPE html> <html> <body> <h1>Input search form Property</h1> <form id="FORM_1"> FRUITS: <input type="search" id="SEARCH1" name="fruits"> </form> <p>Get the form id by clicking on the below button</p> <button type="button" onclick="formId()">GET FORM</button> <p id="Sample"></p> <script> function formId() { var P=document.getElementById("SEARCH1").form.id; document.getElementById("Sample").innerHTML = "The id of the form containing the search field is: "+P ; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
GET FORM 버튼 클릭 시 -
위의 예에서 -
먼저 type=”search”, id=”SEARCH1”, name=”fruits”인 요소를 생성했습니다. 검색 필드는 id 속성이 "FORM_1"로 설정된 양식 안에 있습니다 -
<form id="FORM_1"> FRUITS: <input type="search" id="SEARCH1" name="fruits"> </form>
그런 다음 사용자가 클릭할 때 formId() 메서드를 실행하는 GET FORM 버튼을 만듭니다. -
<button type="button" onclick="formId()">GET FORM</button>
formId() 메서드는 getElementById() 메서드를 사용하여 검색 유형이 있는 입력 필드를 가져오고 검색 필드를 포함하는 양식 개체의 id 속성을 가져옵니다. 그런 다음 이 값을 변수 P에 할당하고 innerHTML 속성 -
을 사용하여 id가 "Sample"인 단락에 표시합니다.function formId() { var P=document.getElementById("SEARCH1").form.id; document.getElementById("Sample").innerHTML = "The id of the form containing the search field is: "+P ; }