document.forms 사용 JavaScript의 속성을 사용하여 문서의 태그 수를 가져옵니다. 예시 다음 코드를 실행하여 document.forms를 구현할 수 있습니다. JavaScript의 속성 <!DOCTYPE html> <html> <head> <title>JavaScript Example</title> </head> <body> <h1>Employee Information</h1> <form> Name: <input type="text" name="name" value="Amit"><br> Subject: <input type="text" name="sub" value="Java"> </form> <h1>Department Information</h1> <form> DepartmentID: <input type="text" name="dptid" value="D001"><br> Dept Name: <input type="text" name="dname" value="Marketing"> </form> <script> var num = document.forms.length; document.write("<br>How many forms? "+num); </script> </body> </html>