代码编辑器:
x
1
<video id="myVideo" width="320" height="240" poster="/static/i/img2.jpg" controls>
2
<source src="/static/i/html/html_video_1.mp4" type="video/mp4">
3
<source src="/static/i/html/html_video_1.ogg" type="video/ogg">
4
您的浏览器不支持 video 标签。
5
</video>
6
<p>点击按钮返回视频的 poster 属性值</p>
7
<p id="demo"></p>
8
<button onclick="myFunction()">点我</button>
9
<script>
10
function myFunction(){
11
var x = document.getElementById("myVideo").poster;
12
document.getElementById("demo").innerHTML = x;
13
}
14
</script>
15