Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一页中有许多 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>
$('a').click(function(){ // you have your mp3 file, play it // the way that you'd like var mp3 = $(this).prop('href'); });