이 기사의 예에서는 JavaScript를 사용하여 웹 양식의 작업 속성을 얻는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
JavaScript는 웹 양식의 액션 속성, 즉 제출할 URL 주소를 가져옵니다. 때로는 현재 페이지에 제출해야 하며 액션이 비어 있을 수 있습니다.
<!DOCTYPE html> <html> <body> <form id="frm1" action="jb51.php"> First name: <input type="text" name="fname" value="Donald"><br> Last name: <input type="text" name="lname" value="Duck"><br> <input type="submit" value="Submit"> </form> <p>The value of the action attribute is: <script> document.write(document.getElementById("frm1").action); </script> </p> </body> </html>
실행 결과는 다음과 같습니다.
The value of the action attribute is:jb51.php
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.