프로그래밍/html & jsp

HTML 윈도우창 닫힐때 발생하는 이벤트

Super User 2010. 8. 27. 15:17
<html>
<head>
<script type="text/javascript">
    function onClose()
    {
        window.opener.location.reload();
    }
</script>
</head>
<body onunload="onClose();">
</bode>
</html>