html5 音频autio标签控制

时间:2014-09-04 23:44:30   收藏:0   阅读:582
<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'/> <!-- 归零 -->

原文:http://blog.csdn.net/eadoucn/article/details/39061281

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!