MooTools 中的事件绑定(如 jQuery)

发布于 2024-11-25 19:55:43 字数 177 浏览 0 评论 0原文

有没有办法像 jQuery 一样在 MooTools 中分配多个事件类型?

Mootools:
$$('#id').addEvents({
    keyup: fn,
    click: fn
});

jQuery:
$('#id).bind('keyup click' ,fn);

Is there a way to assign a multiple event types in MooTools like jQuery?

Mootools:
$('#id').addEvents({
    keyup: fn,
    click: fn
});

jQuery:
$('#id).bind('keyup click' ,fn);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷月断魂刀 2024-12-02 19:55:43

是的,有一种方法,通过强大的实现

Element.implement({
    fakeBind : function(evtsStr, callback){
        var events = evtsStr.split(' '), 
            i = 0, 
            l = events.length;
        for (; i < l; i++){
            this.addEvent(events[i], callback);
        }
    }
});

$('div.myClass').fakeBind('click mouseleave', function(event){
    console.log(event.type);
});

演示

Yes, there is a way, through the powerful implement:

Element.implement({
    fakeBind : function(evtsStr, callback){
        var events = evtsStr.split(' '), 
            i = 0, 
            l = events.length;
        for (; i < l; i++){
            this.addEvent(events[i], callback);
        }
    }
});

$('div.myClass').fakeBind('click mouseleave', function(event){
    console.log(event.type);
});

Demo

固执像三岁 2024-12-02 19:55:43

它不多,但看看这个: http://ryanflorence.com/jquery-1-4-mootools-1-2-compared/#binding-multiple-events

在本文中 Jquery 1.4 和 mootools 1.2 进行比较,它们确实很相似..

恐怕我想不出 mootools 可以做到这一点的任何方法..

Its not much, but have a look at this: http://ryanflorence.com/jquery-1-4-mootools-1-2-compared/#binding-multiple-events

In this article Jquery 1.4 and mootools 1.2 are compared, and they really look alike..

Im afraid i can't think of any way that mootools can do that..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文