ビデオの値を取得し、新しい値に変更する必要があります...そのために私はこの関数を使用しました:
var video = $('#task2ResultVideo').get(0);
console.log($(video).attr('poster')); // i am getting this
$(video).attr('src',function(num,val){
console.log(num,val) // i am not getting this..
})
HTML:
<video id="task2ResultVideo" autobuffer poster="img/task2-results-host-poster.jpg">
<source src="Video/webm/Task_2.4a_Host_treated.webm" type="video/webm" />
<source src="Video/ogv/Task_2.4a_Host_treated.theora.ogv" type="video/ogg" />
<source src="Video/MP4/Task_2.4a_Host_treated.mp4" type="video/mp4" />
</video>
しかし、私は値を取得することができません。私のコードの何が問題になっていますか?値を取得した場合、どのようにsrcを変更できますか?
何か提案をお願いしますか?