javascript自己写的自定事件类

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>

<body>
</body>
<script>
    // 自定义事件;  把函数当成事件执行;
    function event1() {
        console.log("很多逻辑111"); //a写的;
    }
    function event2() {
        console.log("很很多逻辑222") //b写的;
    }
    class MyEvent {
        constructor() {
            this.handle = {};
        }
        //添加自定义事件
        addEvent(evnetName, fn) {
            if (typeof this.handle[evnetName] == "undefined") {
                this.handle[evnetName] = [];
            }
            this.handle[evnetName].push(fn);
        }
        // 触发自定义事件
        trigger(evnetName) {
            this.handle[evnetName].forEach(v => {
                v();
            })
        }
        //移除自定义事件
        removeEvent(eventName, fn) {
            if (!fn in this.handle[eventName]) {
                return;
            }
            for (let i = 0; i < this.handle[eventName].length; i++) {
                if (this.handle[eventName][i] === fn) {
                    this.handle[eventName].splice(i, 1);
                    break;
                }
            }
        }
    }

    let newEvent = new MyEvent();
    newEvent.addEvent("myfn",event1);
    newEvent.addEvent("myfn",event2);
    newEvent.removeEvent("myfn",event2);
    newEvent.trigger("myfn");


</script>

</html>

 

转载于:https://www.cnblogs.com/supermanGuo/p/11403060.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值