为了账号安全,请及时绑定邮箱和手机立即绑定

js的onunload不起效

js的onunload不起效

错过了年华 2018-08-23 15:05:29
<!DOCTYPE html><html><head>    <meta charset="utf-8">    <title>onload 和 onunload 事件</title></head><body onload="load()" onunload="unload()" >    <script>    function load() {      alert('go')    }     function unload() {      alert('gggggg')    }    </script>    <p>弹窗-提示浏览器 cookie 是否可用。</p></body></html>
查看完整描述

5 回答

?
兼容并包

TA贡献83条经验 获得超67个赞

<body  onunload="alert('欢迎您再来')" >

<script>
    window.onbeforeunload=function (){
        alert("===onbeforeunload===");
        if(event.clientX>document.body.clientWidth && event.clientY < 0 || event.altKey){
            alert("你关闭了浏览器");
        }else{
            alert("你正在刷新页面");
        }
    }

</script>

onload 事件和onunload事件 正好相反。这样就能看到效果了(ie浏览器 能看到效果)

查看完整回答
反对 回复 2018-08-24
?
修罗_大千世界

TA贡献1条经验 获得超1个赞

不懂意思

查看完整回答
1 反对 回复 2018-08-23
?
幕布斯0146805

TA贡献1条经验 获得超0个赞

<!DOCTYPE html>

<html>


<head>

    <meta charset="utf-8">

    <title>onload 和 onunload 事件</title>

</head>


<body onload="load()" onunload="unload()" >

    <script>

    function load() {

      alert('go')

    }

     function unload() {

      alert('gggggg')

    }

    </script>

    <p>弹窗-提示浏览器 cookie 是否可用。</p>

</body>


</html>


查看完整回答
反对 回复 2018-08-23
?
hahahaha211

TA贡献1条经验 获得超0个赞

hahahhhha

查看完整回答
反对 回复 2018-08-23
?
错过了年华

TA贡献56条经验 获得超22个赞

<!DOCTYPE html>

<html>


<head>

    <meta charset="utf-8">

    <title>onload 和 onunload 事件</title>

</head>


<body onload="load()" onunload="unload()" >

    <script>

    function load() {

      alert('go')

    }

     function unload() {

      alert('gggggg')

    }

    </script>

    <p>弹窗-提示浏览器 cookie 是否可用。</p>

</body>


</html>


查看完整回答
反对 回复 2018-08-23
  • 5 回答
  • 0 关注
  • 3898 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信