gpt4 book ai didi

javascript - 通过查询字符串加载 mp4 视频

转载 作者:行者123 更新时间:2023-11-28 08:13:51 25 4
gpt4 key购买 nike

我需要通过查询字符串加载 mp4 视频。使用 jquery 我的代码不会更新视频源。如果我将示例视频 url 放在 html5 源 id 中,它无需 JQuery 即可工作。我的任务是打开加载了正确视频的页面。

问题是代码没有看到 JS 源代码。当我不应该定义变量时,还用 $ 定义了变量。现在可以了..

  <video id='videoPlayer' width="640" height="480" controls="controls">
<source id='mp4Source' src="" type="video/mp4" />
</video>
<script src="jquery.min.js"></script>
<!--<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js">-->
<script>

$(document).ready(function () {
// theVid will be populated by query string, for testing it's hard coded.
//var theVid = 'http://html5demos.com/assets/dizzy.mp4';
var theVid = 'http://techslides.com/demos/sample-videos/small.mp4';

var player = document.getElementById('videoPlayer');
var mp4Vid = document.getElementById('mp4Source');

player.pause();

// Now simply set the 'src' attribute of the mp4Vid variable!!!!
// (...using the jQuery library in this case)

$(mp4Vid).attr('src', theVid);
player.load();
//player.show();
player.play();

});

最佳答案

$('#mp4Source').attr('src', theVid);

您没有将源设置为您列出的 html。尝试一下。

关于javascript - 通过查询字符串加载 mp4 视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23834098/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com