1

我需要将工作的 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)); 

但是没有效果:(有人能指出我正确的方向吗?

谢谢!

4

1 回答 1

1

MooTools 不支持 HTML5 媒体标签事件。添加块后写在这里你可以使用:

$('myVideo').addEvent('ended', function(){
//Functions here
});

这里myVideo是标签的 id:

<video id="myVideo"></video>
于 2012-05-02T13:24:13.533 回答