菜鸟教程小白 发表于 2022-12-12 18:49:33

ios - 如何在 iOS 中播放多个 html5 音频文件?


                                            <p><p>假设我有两个音频文件。我用我的 javascript 将它们连接起来。</p>

<pre><code>var audio1 = new Audio();
audio1.src = &#39;file1&#39;;
audio1.load();

var audio2 = new Audio();
audio2.src = &#39;file2&#39;;
audio2.load();
</code></pre>

<p>当我播放音频 1 然后播放音频 2 时,移动 safari (ios) 停止音频 1 然后播放音频 2。它只发生在 ios safari 中。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>据我所知,这是 Apple 的设计决定,不能播放多个音频文件。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 iOS 中播放多个 html5 音频文件?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8785022/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8785022/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 iOS 中播放多个 html5 音频文件?