웹 브라우저 창의 크기가 조정되면 크기 조정 속성 트리거.
예시
다음 코드를 실행하여 onresize를 구현할 수 있습니다. 속성 -
<!DOCTYPE html>
<html>
<body onresize = "display()">
<p>Resize the window to trigger event.</p>
<script>
function display() {
alert("Web browser window resized!");
}
</script>
</body>
</html>