gpt4 book ai didi

javascript - 使用javascript选中复选框时播放音频

转载 作者:行者123 更新时间:2023-11-29 19:09:11 25 4
gpt4 key购买 nike

我正在尝试在选中 html 复选框时播放一个简短的音频文件。我可能缺少一些基本的东西。这是我的代码:

<body>
<input type="checkbox" id="cena" onchange="myfunction()"></input><label for="cena"></label>
</label><script>
function myfunction(){
var audio = new audio('rusbtaudio.mp3');
audio.play();
}
</script>
</body>

rusbtaudio.mp3 与 html 文件位于同一文件夹中。

最佳答案

<input>元素是自关闭的。使用 .load() , canplay事件。替代new Audio()对于 new audio()

<body>
<input type="checkbox" id="cena" onchange="myfunction(this)" />
<label for="cena"></label>
<script>
var audio = new Audio('rusbtaudio.mp3');
audio.oncanplay = function() {
if (document.getElementById("cena").checked) this.play()
}
function myfunction(el) {
if (el.checked) {
audio.load();
}
}
</script>
</body>

关于javascript - 使用javascript选中复选框时播放音频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40441083/

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