Video load() 方法
Video 对象的 load() 方法用于重新加载音频/视频元素
load() 方法可用于在更改来源或其它设置后对音频/视频元素进行更新
语法
videoObject.load()
浏览器支持
Internet Explorer 9+, Firefox, Opera, Chrome, 和 Safari 6 浏览器支持 load() 方法
Internet Explorer 8 及更早 IE 版本不支持 load() 方法
范例
更改视频资源,并重新载入视频
document.getElementById("mp4_src").src = "/static/i/html/html_video_1.mp4"; document.getElementById("ogg_src").src = "/static/i/html/html_video_1.ogg"; document.getElementById("myVideo").load();