ページの更新、後退、クローズなどが検出できます.
325 ワード
<script type="text/javascript">
window.onbeforeunload(){
if(event.clientX>document.body.clientWidth&&event.clientY<0||event.altKey) {
alert("CLOSE FORM!");
}else{
alert(" ");
}
}
</script>
ページの更新、後退、クローズなどが検出できます.