HTML DOM 입력 월 양식 속성은 HTML 문서의 월 입력 필드가 포함된 양식의 참조를 반환합니다.
구문
다음은 구문입니다 -
object.form
예시
HTML DOM 입력 월 양식 속성의 예를 살펴보겠습니다 -
<!DOCTYPE html> <html> <head> <style> body{ text-align:center; background-color:#363946; color:#fff; } form{ margin:2.5rem auto; } button{ background-color:#db133a; border:none; cursor:pointer; padding:8px 16px; color:#fff; border-radius:5px; font-size:1.05rem; outline:none; } .show{ font-weight:bold; font-size:1.4rem; } </style> </head> <body> <h1>form Property Demo</h1> <form id="Form 1"> <fieldset> <legend>Form 1</legend> <input type="month" class="monthInput"> </fieldset> </form> <button onclick="identify()">Identify Month Input Field</button> <p class="show"></p> <script> function identify() { var formId = document.querySelector(".monthInput").form.id; document.querySelector(".show").innerHTML = "Hi! I'm from " + formId; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
"월 입력 필드 식별" 버튼을 클릭하여 월 입력 필드가 포함된 양식을 가져옵니다.