如何在src中获取html id输出

时间:2015-02-24 12:35:07

标签: javascript jquery html css video

尝试在视频源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>

1 个答案:

答案 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);
)};