-1

我正在使用 html5 的视频元素来支持不同浏览器中的视频

<video id="ss" controls="controls" tabindex="5" class="video-js vjs-default-skin" data-setup="{}" poster="my_video_poster.png">
     <source src="Videos/2.webm" type='"video/webm" codecs="vp8, vorbis"' >
      <source src="Videos/2.ogv" type='"video/ogv" codecs="theora, speex"'>
      <source src="Videos/2.mp4" type="video/mp4">
      Your browser does not support the <code>video</code> element.
     </video>

我需要SRC在单击按钮时设置一个视频。我遇到了如何src在运行时在 asp.net 中设置视频的问题。感谢您的帮助。

4

2 回答 2

1
$('#ss').attr('src','Videos/2.ogv');
var video = $('#ss').get(0);
    video.load();
    video.play();// if you want to make it play after source changed
于 2012-10-10T06:36:26.353 回答
0

请使用 jQuery 在运行时更改视频源。

请参阅链接了解更多详情。

$("#ss video")[0].load();更改src属性后尝试

http://forum.jquery.com/topic/change-youtube-and-yahoo-video-links-to-embedded-players

于 2012-10-10T06:34:04.260 回答