美文网首页
移除事件

移除事件

作者: 关耳木南 | 来源:发表于2019-07-16 15:48 被阅读0次
<style type="text/css">
    #box{
        width:100px;
        height:100px;
        background-color: pink;
    }
</style>
<div id="box"></div>
<script type="text/javascript">
    var callback = function(event){
        event.stopPropagation();
        console.log(1)

    }
    box.addEventListener("click",callback);
    document.onclick = function(){
        box.removeEventListener("click",callback);
    } 
</script>

相关文章

网友评论

      本文标题:移除事件

      本文链接:https://www.haomeiwen.com/subject/jjjtlctx.html