jPlayer使用“this”获取当前曲目

时间:2013-01-07 15:04:27

标签: javascript jquery object this jplayer

我想使用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);
  });
});

0 个答案:

没有答案