Html5选择本地视频音频文件播放

DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>title>
    <script src="../Script/jquery-1.9.1.min.js" type="text/javascript">script>
    <script type="text/javascript">
        $(document).ready(function () {
            $("#File").change(function (file) {
                $("body").append(file.target.files[0]);
                var url = window.URL.createObjectURL(file.target.files[0]);
                $("#player")[0].src = url;
                $("#player")[0].onload = function () {
                    window.URL.revokeObjectURL(src);
                };
                $("#player").css({ "width": "100%", "height": "100%" });
            });
        });
    script>
head>
<body>
    <input id="File" type="file" id="file" />
    <video id="player"autoplay="autoplay">
                    video>
body>
html>

 

转载于:https://www.cnblogs.com/CielWater/p/4255946.html

你可能感兴趣的:(Html5选择本地视频音频文件播放)