14

我想使用原生 JavaScript 或 jQuery 来更改 HTML 视频标签上的海报属性。任何帮助将不胜感激。

<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

4 回答 4

21

要在本地执行此操作,只需更改属性:

document.getElementById('htmlFive').setAttribute('poster','newvalue');

于 2012-10-10T20:46:58.703 回答
9

使用 jQuery 的attr方法,例如:

$('#htmlFive').attr('poster', 'newvalue')

或本机setAttribute

document.querySelector('#htmlFive').setAttribute('poster', 'newvalue')
于 2012-10-10T19:03:42.180 回答
-4
$('#video source').attr('src', srcPath);
于 2012-10-10T19:04:08.270 回答
-4
$("#example_video_1 .vjs-poster").css('background-image', 'url(http://video-   js.zencoder.com/oceans-clip.jpg)').show();
于 2013-08-01T04:09:06.240 回答