gpt4 book ai didi

jquery - MooTools 版本的 jQuery 命名空间事件?

转载 作者:行者123 更新时间:2023-12-01 03:52:15 25 4
gpt4 key购买 nike

jQuery 可以让你做类似的事情

$div.bind('click.namespace', function)
$div.unbind('click.namespace')

MooTools 中有类似的工具吗?我尝试定义 pseudo event :

Event.definePseudo('shim', function(split, fn, args) {fn.apply(this, args);})

document.body.addEvent('click', function(){alert('regular click');});
document.body.addEvent('click:shim', function(){alert('shim click');});

document.body.removeEvents('click') // removes both!
document.body.removeEvents('click:shim') // removes neither!

这似乎是一个死胡同。

最佳答案

我使用 Element.implement 实现了它,但我的问题是要求使用 native MooTools 方法来实现它,而无需定义我自己的函数。

Element.implement({
// Call as element.bind('event.namespace', function() {});
bind: function(name, funktion) {
// Get event type and namespace
var split = name.split('.'),
eventName = split[0],
namespace = split[1];

// Store the event by its full name including namespace
this.bindCache = this.bindCache || {};

if(this.bindCache[name]) {
this.bindCache[name].push(funktion);
} else {
this.bindCache[name] = [funktion];
}

// Bind the function to the event
this.addEvent(eventName, funktion);
},

// Call as element.unbind('event.namespace');
unbind: function(name) {
// Unbind the specified event
var eventName = name.split('.')[0],
funktions = this.bindCache[name],
x = 0,
funktion;

for(; funktion = funktions[x++]; ) {
this.removeEvent(eventName, funktion);
}
}
});

document.body.bind('click.1', function() {alert('click 1');});
document.body.bind('click.1', function() {alert('click 1 other');});
document.body.bind('click.2', function() {alert('click 2');});

document.body.unbind('click.1'); // leaves click.2

关于jquery - MooTools 版本的 jQuery 命名空间事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7220110/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com