我一直在研究我的javascript技巧,但是我遇到了一个问题,当点击这里的音频时我的代码是没有播放的。
<div class="player_container">
<button class="play_pause_button" type="button" title="Play" onclick="play_pause"></button>
<audio class="audio_player" preload="auto">
<source src="audio/test.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<script type="text/javascript">
var content = document.getElementsByClassName('audio_player'),
play_pause = document.getElementsByClassName('play_pause_button'),
progress = document.getElementsByClassName('player_progress');
function play_pause() {
return content.play();
}
</script>
答案 0 :(得分:0)
document.getElementsByClassName('audio_player')
返回HTMLCollection对象,而不是单个节点。在向其发送命令之前,您需要指定集合中的哪个对象。
将return content.play();
更改为return content[0].play();
可以解决您的问题。