--- title: GlobalEventHandlers.onchange slug: Web/API/GlobalEventHandlers/onchange tags: - API - GlobalEventHandlers - HTML DOM - Property - Reference translation_of: Web/API/GlobalEventHandlers/onchange ---
onchange
속성은 {{event("change")}} 이벤트의 이벤트 핸들러를 설정하고 반환합니다.
target.onchange = functionRef;
functionRef는 null
또는 이벤트 핸들러를 지정하는 JavaScript function 함수 중 하나여야 합니다.
<input type="text" placeholder="Type something here, then click outside of the field." size="50">
<p id="log"></p>
let input = document.querySelector('input');
let log = document.getElementById('log');
input.onchange = handleChange;
function handleChange(e) {
log.textContent = `The field's value is
${e.target.value.length} character(s) long.`;
}
{{EmbedLiveSample("예제")}}
명세 | 상태 | 비고 |
---|---|---|
{{SpecName('HTML WHATWG','webappapis.html#handler-onchange','onchange')}} | {{Spec2('HTML WHATWG')}} |
{{Compat("api.GlobalEventHandlers.onchange")}}