我需要将工作的 jQuery 脚本迁移到 Mootools 以满足我的项目要求。
工作的jQuery代码是:
$('#video').bind('ended', function() {
//Functions on end here.
});
我已经用 Mootools 尝试了以下操作......
document.id('video').addEvent('ended', function () {
//Functions here
});
和
document.id('video').addEvent('ended', function () {
//Functions here
}.bind(this));
但是没有效果:(有人能指出我正确的方向吗?
谢谢!