音频正在播放到笔记本电脑和PC中,但它不能在ipad中播放。我试过不同的ipads,但它没有播放音频。
<script>
jQuery(document).ready(function(){
var audioElement = document.createElement('audio');
audioElement.type='audio/mpeg';
audioElement.setAttribute('src', '/*file url over here*/');
audioElement.setAttribute('autoplay', 'autoplay');
$.get();
audioElement.addEventListener("load", function() {
audioElement.play();
}, true);
audioElement.play();
});
</script>
答案 0 :(得分:0)
您需要确保制作了一个srcset,它涵盖了所有设备/浏览器上支持的所有编解码器。
答案 1 :(得分:0)
我找到了答案。 $ .get();应该是jQuery.get();