MooTools 中的事件绑定(如 jQuery)
有没有办法像 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,有一种方法,通过强大的实现:
演示
Yes, there is a way, through the powerful implement:
Demo
它不多,但看看这个: 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..