我的代码部分有效。当我单击播放时,它会更改为暂停,但是当我点击暂停后,它会暂停并且不会更改回播放?
var playOrPause = function (id, button) {
var pp = document.getElementById(id);
if(pp.paused) {
button.textContent = 'Play';
} else if(!pp.paused) {
button.textContent = 'Pause';
}
};
我刚刚发现了我的问题。我编写了一个我的事件监听器错误lol谢谢你们的帮助!!
答案 0 :(得分:0)
$('.player_audio').click(function() {if (this.paused == false) { this.pause();
alert('music paused'); } else { this.play();alert('music playing');}});
这会对你有所帮助