gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 01:56:00 27 4
gpt4 key购买 nike

我的代码部分有效。当我单击播放时,它会更改为暂停,但是当我单击暂停后立即保持为暂停状态,并且不会更改回播放吗?

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

我只是想出我的问题。我对我的事件监听器之一进行了错误的编码大声笑谢谢大家的帮助!

最佳答案

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

这对你有帮助

关于javascript - 根据媒体是播放还是暂停来更改按钮的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35546890/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com