尝试在视频源src和海报
中获取html id输出<video id="really-cool-video" class="video-js vjs-default-skin" controls
preload="auto" width="640" height="264" poster="$('#posterURL').html();"
data-setup='{}'>
<source src="$('#videoURL').html();" type='video/mp4'>
</video>
<div id="posterURL"></div>
<div id="videoURL"></div>
答案 0 :(得分:0)
您可以使用jQuery的.attr() - 函数:
$(document).ready(function(){
var posterUrl = $('#posterURL').html();
var videoUrl = $('#videoURL').html();
$('#really-cool-video').attr('poster', posterUrl);
$('source').attr('src', videoUrl);
)};