html5 音频autio标签控制

时间:2014-09-04 23:44:30   收藏:0   阅读:466
<audio id="my"  controls="controls" loop="loop">
<source src="/11.mp3" type="audio/mp3">
Your browser does not support the audio element.
</audio>
<input type="button" onclick="document.getElementById('my').play()" value='play'/>   <!-- 开始 -->
<input type="button" onclick="document.getElementById('my').pause()" value='pause'/>  <!-- 暂停 -->
<input type="button" onclick="document.getElementById('my').currentTime = 0.0" value='stop'/> <!-- 归零 -->

评论(0)
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!