获取光标在视频控制栏上的位置

Get position of the cursor when it's over the video control bar

我需要获取用户悬停在控制栏上时鼠标光标指向的位置。我该怎么做?

事件 "seek" 完成了工作 ;) 你应该给你的实例播放器添加一个监听器:

player.addListener('seek', seekListener);

然后定义这个函数:

var seekListener=function(Obj) {    
   $('#mouseclick').html(myPlayer.getPosition())
}