js处理ie关闭事件
在网页中加入下列代码
<script>
function window.onunload(){alert(这就是你要做的事,关闭网页之后做的!)}
function window.onbeforeunload(){alert(这就是你要做的事,关闭网页之前做的!)}
</script>
或者
<script>
function tuichu(){alert(这就是你要做的事,关闭网页之后做的!)}
function tuichuqian(){alert(这就是你要做的事,关闭网页之前做的!)}
</script>
<body onunload="tuichu()" onbeforeunload="tuichuqian()">