把选择的文件显示在video标签中

时间:2022-04-18 05:12:53

js代码:

// hTML5实现表单内的上传文件框,上传前预览视频,刷新预览video,使用HTML5 的File API, // 成立一个可存取到该file的url,一个空的video标签,ID为video0,把选择的文件显示在video标签中,,实现视频预览成果。 // 需要选择撑持HTML API的浏览器。 $("#video").change(function(){ var objUrl = getObjectURL(this.files[0]) ; console.log("objUrl = "+objUrl) ; if (objUrl) { $("#video0").attr("src", objUrl) ; } }) ; //成立一个可存取到该file的url function getObjectURL(file) { var url = null ; if (window.createObjectURL!=http://www.mamicode.com/undefined) { // basic url = window.createObjectURL(file) ; } else if (window.URL!=http://www.mamicode.com/undefined) { // mozilla(firefox) url = window.URL.createObjectURL(file) ; } else if (window.webkitURL!=http://www.mamicode.com/undefined) { // webkit or chrome url = window.webkitURL.createObjectURL(file) ; } return url ; }

html:

<video style=http://www.mamicode.com/"height:auto;" src=http://www.mamicode.com/"" id=http://www.mamicode.com/"video0" controls=http://www.mamicode.com/"controls"></video> <input class=http://www.mamicode.com/"form-control" type=http://www.mamicode.com/"file" style=http://www.mamicode.com/"height:auto;" id=http://www.mamicode.com/"video" name=http://www.mamicode.com/"video"/>