我正在使用我在SO上找到的以下代码来处理我正在使用的iphone应用程序,
<a onclick="this.firstChild.play()">
<audio src=".."></audio>
Here's where I insert my custom player button
</a>
但是我无法暂停音乐,有人能告诉我应该在哪里插入pause()
吗?
答案 0 :(得分:2)
如何让你入门?测试here on this Fiddle。
<audio id="player" src=".."></audio>
<a href="javascript:;" onclick="document.getElementById('player').play();">Play</a>
<a href="javascript:;" onclick="document.getElementById('player').pause();">Pause</a>