1

我在一页中有许多 mp3 文件,我想在单击时播放 mp3 文件。如何使用 jquery 播放它们?

<a href="listen(1)" >play 1</a>
<a href="listen(2)" >play 2</a>
<a href="listen(3)" >play 3</a>
<a href="listen(4)" >play 4</a>
4

1 回答 1

0
$('a').click(function(){
  // you have your mp3 file, play it
    // the way that you'd like
  var mp3 = $(this).prop('href');
});
于 2012-05-06T19:35:05.787 回答