Video 不支持视频文件消息不显示

Video 不支持视频文件消息不显示,video,Video,我目前有一个safari不支持的视频文件,并输入了一条消息,说明浏览器不支持该文件类型。但是,该消息不可见。有什么办法补救吗 <video width="100%" height="auto" poster="/imgs/vfx-reel.png" controls> <source src="media/reel-animation.mp4" type="video/mp4"/> apologies but your browser do

我目前有一个safari不支持的视频文件,并输入了一条消息,说明浏览器不支持该文件类型。但是,该消息不可见。有什么办法补救吗

<video width="100%" height="auto" poster="/imgs/vfx-reel.png" controls>
        <source src="media/reel-animation.mp4" type="video/mp4"/>
        apologies but your browser does not support the video file type . video can currently be viewed in chrome and firefox . we are working to remedy this
</video>

抱歉,您的浏览器不支持该视频文件类型。当前可以在chrome和firefox中查看视频。我们正在努力解决这一问题

如果浏览器不支持视频元素,而不是视频元素无需播放时,将显示该文本

下面是一个示例,说明如何通过捕获源元素上的错误事件来捕获此错误:

var v = document.querySelector('video'),
  sources = v.querySelectorAll('source'),
  lastsource = sources[sources.length-1];
lastsource.addEventListener('error', function(ev) {
  var d = document.createElement('div');
  d.innerHTML = v.innerHTML;
  v.parentNode.replaceChild(d, v);
}, false);