当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML input file用法及代码示例


HTML <input type =“ file”>用于指定文件选择字段,并添加按钮以选择要上传到表单的文件。

用法:

<input type="file"> 

例:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML input type file 
    </title>  
      
    <style>  
        h1 {  
            color:green;  
        }  
        h3 {  
            font-family:Impact;  
        }  
        body {  
            text-align:center;  
        }  
    </style>  
</head>  
  
<body>  
    <h1>  
        GeeksforGeeks  
    </h1>  
      
    <h3>  
        HTML <Input Type = "File">  
    </h3>  
  
    <input type="file" id="myFile">  
      
    <p id="submit_text"></p> 
</body>  
  
</html>                    

输出:

支持的浏览器:<input type =“ file”>支持的浏览器如下:

  • 谷歌浏览器1.0
  • IE浏览器
  • Firefox 1.0
  • Safari 1.0
  • Opera 1.0




相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | <input type=”file”>。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。