我有2个html文件,我正在尝试使用html5 / js进行基本的视频上传过程。
我不知道如何获取文件并将其推送到第二个html文档中的视频标记中。任何帮助将不胜感激。
首页:
<!DOCTYPE html>
<html>
<body>
<form action="video player.html">
<input type="file" accept="video/*">
<input type="submit">
</form>
<script>
console.log(userInput);
</script>
<p><strong>Note:</strong> Butts</p>
带视频标签的第二页:
<!doctype html>
<style>
</style>
<head>
</head>
<video src="" width="400" controls>
<source type="file" name="vid" type="video/*">
Your browser does not support HTML5 video.
</video>
<body>
</body>
<script>
</script>
<html>
我知道这是非常基本的,但我是新手并坚持下去。我在很长一段时间内没有编写太多代码,并且一直试图自己解决这个问题,但似乎无法正确理解语法。如果我没记错的话我需要在某个地方使用getelementbyID吗?无论如何,再次感谢。
编辑:拼写错误