1

我相信我在 javascript 中实现视频播放器时遇到了一个相对简单的问题。首先,我想将一个字符串添加到一个数组中,并将第一个字符串条目作为我的视频标签中源的 src 引用。然后,我希望在收到 src 后开始播放视频。

我还没有实现后者的代码,因为我还没有超越前者。我见过人们在更改 src 后引用 .load() 函数调用,但我不知道我是否正确设置了 src 开头。

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Untitled Document</title>

<style>

video
{
    background-color:#333;
}

</style>

</head>

<body>

<script type="text/javascript">
var width = (1280 * 0.1);
var height = (720 * 0.1);
var resized = false;

function getWidth(){
    return width;
}

function getHeight(){
    return height;
}


//Create array. Checkbox adds video to list.
//"Submit" button gives first video in list to player.

var videoList = new Array();
var i = 0; //incrementer

//Use checkbox's value as argument
function addVideo(value){
    videoList[i] = value;
    i++;
}

function videoSubmit(){
    document.getElementById("player").setAttribute("src", videoList[i]);
}

</script>

<video id="test" width="getWidth()" height="getHeight()">
<source id="player" src="null" type="video/avi" width="getWidth()"     height="getHeight()"/>

</video>
<br/>

<form id="selector" action="">
<input type="checkbox" name="firstvideo" value="test.avi" onClick="addVideo(test.avi)"/> sample 1.avi<br/>

</form>

<button onClick="videoSubmit()"> Submit</button>


</body>
</html>

我对 javascript 很陌生,但我仍在努力解决它。非常感谢任何有用的信息。

4

2 回答 2

2

看起来i有错误的价值。尝试:

function videoSubmit(){
    document.getElementById("player").setAttribute("src", videoList[ i - 1 ]);
}

还有一些其他问题。这是一个固定版本 - 享受:

http://jsfiddle.net/mrSYC/

另一个问题:

你不能这样做:

<video id="test" width="getWidth()" height="getHeight()">

如果您想以编程方式设置这些属性,则必须以与 src 属性相同的方式进行设置。有时你会看到这种结构,但它很笨拙:

<script>document.write('<video id="test" width="' + getWidth() + '" ...')</script>

与 Q 无关 - 您可以通过直接跳到 jquery 来跳过很多 javascript 学习痛苦。它确实会导致页面加载损失,但它解决了纯 javascript 的许多烦恼。以老式的方式做这件事会给你“宝贵的经验”——我们这些拥有它的人可能认为这超过了保证。

http://jquery.com/

于 2012-06-21T14:32:29.423 回答
0

您在这里不需要额外的source元素,可以简单地定位元素的src属性video

所以像:

document.getElementById('test').src = videoList[i];

should be all you need to do (assuming that the value of videoList[i] is a valid URL to the video file and that the browser in question can play it).

于 2012-06-21T16:31:55.353 回答