我在另一个问题中找到了一个小代码片段,只用jquery play()和pause()播放mp3:
<a href="#" rel="http://www.uscis.gov/files/nativedocuments/Track%2093.mp3"
class="play">Play</a>
<div class="pause">Stop</div>
<script>
$(document).ready(function() {
var audioElement = document.createElement('audio');
var source = $('.play').attr('rel');
audioElement.setAttribute('src', source);
//audioElement.setAttribute('autoplay', 'autoplay');
audioElement.load()
$.get();
audioElement.addEventListener("load", function() {
audioElement.play();
}, true);
$('.play').click(function() {
audioElement.play();
});
$('.pause').click(function() {
audioElement.pause();
});
});
我从“play”-link的rel属性中获取音频源。现在我想添加更多音频链接并使源相对于其rel属性。
我试过
var source = $(this).attr('rel');
以及.find()和.each(),但到目前为止没有任何效果。我已经设置了一个带有两个音频链接的jsfiddle,其中只播放了第一个音频文件。 (小提琴链接到一个外部脚本,客户端在他的网站上使用,只加载了jquery 1.4.3,但我想这无论如何都是可能的。我只是不想使用音频播放器插件,我的目标是简约解决方案。)
任何帮助都将受到高度赞赏!
答案 0 :(得分:0)
您可以更新脚本以为每个容器创建一个音频标记:
$(document).ready(function () {
// For each container div
$(".container").each(function() {
// Create the HTML5 <audio> tag
var audioElement = document.createElement('audio');
// Find the play/pause buttons
var $play = $(this).find(".play");
var $pause = $(this).find(".pause");
// Load the source from the play button
var source = $play.attr('rel');
audioElement.setAttribute('src', source);
$.get();
// Play the sound when loaded
audioElement.addEventListener("load", function () {
audioElement.play();
}, true);
// When the user clicks on the play button, play the audio
$play.click(function () {
audioElement.play();
});
// When the user clicks on the pause button, pause it
$pause.click(function () {
audioElement.pause();
});
});
});
更新了小提琴:http://jsfiddle.net/sY7UT/