我试图弄清楚如何为自定义事件设置参数。如何在订阅事件时设置参数,然后在触发事件时添加一些额外的数据。
我有一个用于测试的简单 JS,但在“句柄”的 e 参数中,我只看到订阅的数据。
function handle(e) {
//e.data has only "b"
alert(e.data);
}
function myObj() {
this.raise = function () {
//Trigger
$(this).trigger("custom", { a: "a" });
}
}
var inst = new myObj();
//Subscribe
$(inst).bind("custom", { b: "b" }, handle);
inst.raise();
谢谢你。