根据媒体是播放还是暂停来更改按钮的文本?

时间:2016-02-22 06:13:25

标签: javascript html5 audio video

我的代码部分有效。当我单击播放时,它会更改为暂停,但是当我点击暂停后,它会暂停并且不会更改回播放?

var playOrPause = function (id, button) {
var pp = document.getElementById(id);
    if(pp.paused) {
        button.textContent = 'Play';
    } else if(!pp.paused) {
        button.textContent = 'Pause';
    }
};

我刚刚发现了我的问题。我编写了一个我的事件监听器错误lol谢谢你们的帮助!!

1 个答案:

答案 0 :(得分:0)

$('.player_audio').click(function() {if (this.paused == false) { this.pause();
  alert('music paused'); } else { this.play();alert('music playing');}});

这会对你有所帮助