更新 问题原来是谷歌驱动器问题。由于某些原因,移动浏览器上的文件需要设置为完全公开才能使用,而桌面浏览器上的文件可以与“任何拥有链接的人”一起播放。缺乏体面的错误报告使得这很难追踪。
问题: 单击按钮播放 html5 标签在所有桌面浏览器上都能完美运行,但在 iOS 下的 mobile-chrome 或 mobile-safari 上却不行。(没有在安卓上测试过)。
这个例子在我测试过的所有桌面浏览器上都能完美运行,但不适用于 iOS Chrome 或 iOS safari。我不知道为什么。我已经在这里写出了 div,但我正在以编程方式创建它,因为其中可能有一些。对于测试,我使用了下面介绍的内容。
DIV:(下面的'myfileidgoeshere'是此处删除的实际ID..)
<div id="user0">
<div><img src="icon.png" class="icon">Title</div>
<div class="buttons">
<div><audio id="player_user0">
<source id="src_user0" src="https://googledrive.com/host/myfileidgoeshere" type="audio/mp3"></audio>
</div>
<button type="button" class="btn" onclick="playUserAudio2(this)">
<span class="glyphicon glyphicon-play white play"></span></button>
</div></div>
播放功能:(因为我以编程方式编写上述 div 我必须获取变量。
function playUserAudio2(target) {
var id = $(target).parent().parent().closest('div').attr('id');
var link = $('#src_'+id).attr('src');
var myAudio=document.getElementById('player_'+id);
//some graphical tweaks to show/hide play pause button
var toggle = $(target).find('span.play');
if(toggle.hasClass('glyphicon-play')){
active = $(target).parent().addClass('glow');
toggle.removeClass('glyphicon-play');
toggle.addClass('glyphicon-stop');
myAudio.play();
$('#player_'+id).on("ended", function(){
toggle.removeClass('glyphicon-stop');
toggle.addClass('glyphicon-play');
})
}else{
toggle.removeClass('glyphicon-stop');
toggle.addClass('glyphicon-play');
myAudio.pause();
myAudio.currentTime=0.0; //pause and reset the time to stop.
}
}