通过获取 .attr 使用 JavaScript/jquery 播放/暂停音频文件
Posted
技术标签:
【中文标题】通过获取 .attr 使用 JavaScript/jquery 播放/暂停音频文件【英文标题】:Play / Pause audio file with JavaScript / jquery by fetching .attr 【发布时间】:2015-09-20 09:18:13 【问题描述】:按下播放时,文件 mp3 应播放,再次单击时 mp3 应暂停。目标是从'key'中获取文件名,然后在javascript/jquery中添加目录+ .mp3。
它正在播放但没有暂停。
<span class="play" key="cef83b993c716dd543b6fa4f053cc4a4">Play</span>
<script>
$(".play").click(function()
var audio = new Audio("beats/" + $(this).attr('key') + ".mp3");
if (audio.paused)
audio.play();
else
audio.pause();
$( this ).toggleClass( "pause" ); // switch to some new css for a pause button
);
</script>
【问题讨论】:
【参考方案1】:原因是,每次点击它都会执行这个:
var audio = new Audio("beats/" + $(this).attr('key') + ".mp3");
所以你需要做的是,在前面添加一个条件:
var audio;
if (typeof audio == "undefined")
audio = new Audio("beats/" + $(this).attr('key') + ".mp3");
您的完整代码是:
<span class="play" key="cef83b993c716dd543b6fa4f053cc4a4">Play</span>
<script>
var audio;
$(".play").click(function()
if (typeof audio == "undefined")
audio = new Audio("beats/" + $(this).attr('key') + ".mp3");
if (audio.paused)
audio.play();
else
audio.pause();
$( this ).toggleClass( "pause" ); // switch to some new css for a pause button
);
</script>
【讨论】:
以上是关于通过获取 .attr 使用 JavaScript/jquery 播放/暂停音频文件的主要内容,如果未能解决你的问题,请参考以下文章