HTML5:使用Onclick进行自定义按钮时如何暂停?

时间:2012-03-10 14:52:44

标签: custom-controls html5-audio

我正在使用我在SO上找到的以下代码来处理我正在使用的iphone应用程序,

<a onclick="this.firstChild.play()">
    <audio src=".."></audio>
    Here's where I insert my custom player button
</a>

但是我无法暂停音乐,有人能告诉我应该在哪里插入pause()吗?

1 个答案:

答案 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>