이 기사의 예에서는 JavaScript를 사용하여 버튼의 양식 ID를 얻는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
여기서는 자바스크립트를 사용하여 다음 JS 코드를 통해 얻을 수 있는 양식 버튼의 ID를 가져옵니다.
<!DOCTYPE html> <html> <body> <h1>www.sharejs.com</h1> <form id="form1"> <button id="button1" type="button">Click me!</button> </form> <p>The id of the form containing the button is: <script> document.write(document.getElementById("button1").form.id); </script></p> </body> </html>
실행 결과는 다음과 같습니다.
The id of the form containing the button is:button1
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.