<script language=javascript> <!-- function loading() { alert("欢迎来到这里"); } function closing() { alert("欢迎再来"); window.close } /--> </script>
<script> function window.onbeforeunload(){ with(window.event)if(clientY<0&&clientX>document.body.clientWidth||altKey)closing() } </script> <body onload="loading()">
|