关于bind函数
为什么bind中的回调函数不使用简写就没有效果呢?而且也没有报错(使用箭头函数是没有问题的)
componentDidMount(){
        $('#player').jPlayer({
            ready: function () {
                $(this).jPlayer('setMedia', {
                    mp3 : 'http://oj4t8z2d5.bkt.clouddn.com/%E9%AD%94%E9%AC%BC%E4%B8%AD%E7%9A%84%E5%A4%A9%E4%BD%BF.mp3'
                }).jPlayer('play');
            },
            supplied: 'mp3',
            wmode: 'window'
        });
        //绑定监听事件
        $('#player').bind($.jPlayer.event.timeupdate,function(e){
            this.setState({
                progress : Math.round(e.jPlayer.status.currentTime)
            });
        });
    }
 
                            