14

ネイティブ JavaScript または jQuery を使用して、HTML ビデオ タグの 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

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 に答える