Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

GlobalEventHandlers.onsubmit

현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.

 

현재 창에서 폼을 제출하는 이벤트를 다루는 이벤트 핸들러

문법

window.onsubmit = funcRef;

매개 변수

  • funcRef 는 함수를 참조하는 변수이다.

예제

<html>
<script>
function reg() {
  window.captureEvents(Event.SUBMIT);
  window.onsubmit = hit;
}
 
function hit() {
  console.log('hit');
}
</script>

<body onload="reg();">
<form>
  <input type="submit" value="submit" />
</form>
<div id="d"> </div>
</body>
</html>

알아두기

제출 이벤트는 사용자가 폼 내부에 있는 제출 버튼(<input type="submit"/>)을 눌렀을 때 발생한다.

명세

Specification Status Comment
WHATWG HTML Living Standard
The definition of 'onsubmit' in that specification.
Living Standard  

문서 태그 및 공헌자

 이 페이지의 공헌자: hoony
 최종 변경: hoony,