菜鸟教程小白 发表于 2022-12-13 11:55:46

javascript - 检测 <embed> 标签无法加载视频


                                            <p><p>我正在尝试使用以下嵌入标签(在 iPad/iOS 上)捕获错误:</p>

<pre><code>&lt;embed width=&#34;320&#34; height=&#34;240&#34;
src=&#34;path/to/my/live/stream/playlist.m3u8&#34;
type=&#34;application/vnd.apple.mpegurl&#34; postdomevents=&#34;true&#34; id=&#34;movie1&#34; /&gt;
</code></pre>

<p>我试图用以下方法捕获它:</p>

<pre><code>$(&#34;#movie1&#34;).on(&#39;onerror&#39;, function() { alert(&#39;error!&#39;) } );
</code></pre>

<p>我还尝试了 <code>onabort</code>、<code>onstalled</code>、<code>onended</code> 和 <code>onsuspend</code> - 所有这些都不会生成事件视频加载失败。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要发出单独的 HTTP 请求来检查文件路径的有效性。</p>

<pre><code>var http = new XMLHttpRequest();
http.open(&#39;HEAD&#39;, &#39;http://path/to/your/video&#39;, false);
http.send();

if (http.status == 404) {
    throw new Error(&#39;Unable to load file&#39;)
} else {
    // Generate your &lt;embed&gt; tag here
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于javascript - 检测 &lt;embed&gt; 标签无法加载视频,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9490529/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9490529/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: javascript - 检测 &lt;embed&gt; 标签无法加载视频