0

我想使用this关键字而不是对象名称来获取 jPlayer 当前曲目信息。

我知道我可以像这样捕获当前的轨道位置:

var myPlaylist =  new jPlayerPlaylist({
  ready: function(event) {
     $(this).bind($.jPlayer.event.play, function(event) { 
     console.log('myPlaylist.current'+myPlaylist.current);
  });
});

但我的问题是有什么方法可以使用这样的关键字来捕获它this(注意下面的代码不起作用):

new jPlayerPlaylist({
  ready: function(event) {
     $(this).bind($.jPlayer.event.play, function(event) { 
     console.log('this.current'+this.current);
  });
});
4

0 回答 0