文件输入类型

时间:2017-01-07 05:23:27

标签: html5 forms input-type-file

我想要一个用户输入文件(Html5)并打印文件的程序。我试过这个: -

<html>
<head>
  <script type="text/javascript">
    fuction a(){
      var s1=document.getElementById("bro").file;
      document.write(s1);
  </script>
</head>
<body>
  <form>
    <input type="file" id="bro">
    <input type="button" Onclick="a();>
   </form>
</body>
</html>

由于某种原因,文件(我插入的照片)没有打印在屏幕上

0 个答案:

没有答案