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
相关用法
- HTML DOM HTML用法及代码示例
- HTML <html> xmlns属性用法及代码示例
- HTML <html>用法及代码示例
- HTML scoped属性用法及代码示例
- HTML DOM lang用法及代码示例
- HTML <section>用法及代码示例
- HTML Style backgroundClip用法及代码示例
- HTML Style borderTop用法及代码示例
- HTML <th> valign属性用法及代码示例
- HTML <col> align属性用法及代码示例
- HTML Meter max用法及代码示例
- HTML poster属性用法及代码示例
- HTML fullscreenerror事件用法及代码示例
- HTML onvolumechange事件用法及代码示例
- HTML Input Hidden value用法及代码示例
- HTML onopen事件用法及代码示例
- HTML Textarea autofocus用法及代码示例
- HTML Style columnGap用法及代码示例
- HTML Input Time autofocus用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | <input type=”file”>。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。