我正在尝试做的简化版本如下:
var indication = $('#some-div');
indication.bind('custom-event', function() { ... }
// ... later on!
function OtherThing() {
$(this).trigger('custom-event');
}
我想在不需要两人明确了解对方的情况下indication.bind('custom-event')
收到触发器。function OtherThing
这可能吗?到目前为止,我唯一的解决方案是将侦听器和事件绑定到 body ......这似乎很草率 - 有没有更好的方法?