<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<button id="btn">测试</button>
</body>
<script>
//关闭窗口的时候触发 IE支持
// window.onunload =function(){
// alert('关闭了');
// }
// 离开页面的时候给予提示信息
window.onbeforeunload = function(){
return '哈哈哈';
}
//alert(this);
//文档加载成功的时候 自动触发
// window.onload=function(){
// var btn =document.getElementById('btn');
// alert(btn);
// }
</script>
</html>点击 "运行实例" 按钮查看在线实例
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号