选择本地文件file
Posted 150536fbb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选择本地文件file相关的知识,希望对你有一定的参考价值。
<body> <input type="file" name="input" id="input" value="选择文件" /> <!--预览框--> <div class="preview" style="width: 1000px; height: 1000px;"> </div> </body> <script type="text/javascript"> var oInput=document.getElementById("input"); var oPre=document.querySelector(".preview"); oInput.onchange=function () { console.dir(oInput); } </script>
以上是关于选择本地文件file的主要内容,如果未能解决你的问题,请参考以下文章