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.
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>
$('a').click(function(){ // you have your mp3 file, play it // the way that you'd like var mp3 = $(this).prop('href'); });