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