我有这个音频来源
<aside class="audio">
<audio id="the-fight-audio">
<source src="audio/the-fight.ogg">
<source src="audio/the-fight.mp3">
</audio>
</aside>
我用这个javascript来播放它
// Play button action
$('.song .play').click(function(){
var song = $(this).data('song'),
audio = $('audio#'+song+'-audio');
$('audio').each(function(){
this.pause(); // Stop playing
this.currentTime = 0; // Reset time
});
audio[0].play();
});
它可以在桌面上工作,但不能在手机上工作,我是否需要做些什么才能让它工作?