首页 > Web开发 > 详细

html5 音频autio标签控制

时间:2014-09-04 23:44:30      阅读:580      评论:0      收藏:0      [点我收藏+]
<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'/> <!-- 归零 -->

html5 音频autio标签控制

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!