美文网首页
jquery .on(event.namespace)

jquery .on(event.namespace)

作者: Sommouns | 来源:发表于2020-06-09 13:31 被阅读0次

背景:在开发一个滑块组件的时候,在参考类似组件的时候看到了,
on('mousemove.xxx') 这个.xxx触及到了我的知识盲区

官方说明文档:https://api.jquery.com/on/

作用就是,比如设置了多个事件,在off的时候可以精确的off对应的事件

<body>
    <div id="demo">click me</div>
</body>

<script type="text/javascript" src="./jquery.js"></script>
<script type="text/javascript">
    $('#demo').on('click.mm', function(event) {
        console.log('this is mm')
    }).on('click.dd', function(event) {
        console.log('this is dd')
    })

    $('#demo').off('click.mm')
</script>

相关文章

网友评论

      本文标题:jquery .on(event.namespace)

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