您的浏览器不支持 video 标签。
点击按钮播放或暂停视频。
播放
暂停
var x = document.getElementById("myVideo");
function playVid(){
x.play();
}
function pauseVid(){
x.pause();
}