我想使用原生JavaScript或jQuery来更改HTML video标签上的poster属性。任何帮助将不胜感激。
<div id="videoplayer" class="video-player" style="overflow: hidden; width: 582px; height: 326px; ">
<div id="myPlayer">
<video id="htmlFive" width="100%" height="100%" controls="" poster="undefined">
<source src="blank.m3u8">
</video>
</div>
</div>
谢谢你!
4条答案
按热度按时间sulc1iza1#
要在本机执行此操作,只需更改属性:
document.getElementById('htmlFive').setAttribute('poster','newvalue');
hgc7kmma2#
使用jQuery的attr方法,例如:
或原生setAttribute:
a1o7rhls3#
bpzcxfmw4#