Notice
Recent Posts
Recent Comments
관리 메뉴

Developer Gonie

[8주차] 37. 일반 button 타입의 버튼을 submit 타입처럼 컨트롤하기 본문

K-DigitalTraining 강의/6. Javascript(웹표준)

[8주차] 37. 일반 button 타입의 버튼을 submit 타입처럼 컨트롤하기

이대곤 2022. 7. 17. 17:04

1. 일단, <input type="button"> 요소가 form 요소 내부에 존재해야 DOM으로 접근할 수 있다.

<form name="myform">
	<input type="text" ~>
    <input type="button" id= ~>
</form>

 

2. document.myform.

 

Comments