`
skybiran
  • 浏览: 3253 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
最近访客 更多访客>>
社区版块
存档分类
最新评论

<input type="file" />accept属性列表

阅读更多

<input type="file" />accept属性列表

1.accept="application/msexcel"

2.accept="application/msword"

3.accept="application/pdf"

4.accept="application/poscript"

5.accept="application/rtf"

6.accept="application/x-zip-compressed"

7.accept="audio/basic"

8.accept="audio/x-aiff"

9.accept="audio/x-mpeg"

10.accept="audio/x-pn/realaudio"

11.accept="audio/x-waw"

12.accept="image/gif"

13.accept="image/jpeg"

14.accept="image/tiff"

15.accept="image/x-ms-bmp"

16.accept="image/x-photo-cd"

17.accept="image/x-png"

18.accept="image/x-portablebitmap"

19.accept="image/x-portable-greymap"

20.accept="image/x-portable-pixmap"

21.accept="image/x-rgb"

22.accept="text/html"

23.accept="text/plain"

24.accept="video/quicktime"

25.accept="video/x-mpeg2"

26.accept="video/x-msvideo"
分享到:
评论

相关推荐

    vue中使用input[type=”file”]实现文件上传功能

    注意:input[type=file] 标签中的属性accept=application/msword,application/pdf 在pc上正常,但是在手机ios和android上这个文件格式限制会被忽略,所以需要在js中增加格式的判断,以及对应显示样式的设置.(我也是刚...

    HTML input type=file文件选择表单元素.docx

    在使用 input type=file 文件选择表单元素时,需要注意 enctype 属性的作用。enctype 属性规定了在发送到服务器之前应当如何对表单数据进行编码,默认的编码是 application/x-www-form-urlencoded。但是,对于文件...

    input type=file 调取手机照相机和选择照片上传

    &lt;input type="file" accept="image/*" capture&gt; ``` `accept="image/*"` 表示接受所有类型的图片文件,`capture` 属性则指示浏览器应该首选设备的摄像头进行捕获。不过需要注意的是,`capture` 属性在某些浏览器中...

    js获取 input file 图片立即显示

    &lt;input type="file" id="imageUpload" accept="image/*"&gt; &lt;img id="preview" src="" alt="预览图片"&gt; ``` 2. **JavaScript 事件处理**: 当用户通过`&lt;input type="file"&gt;`选择文件后,`change`事件会被触发。我们...

    HTML+JAVA 手机端相册或者拍照上传到服务器,简单的代码样例(使用控件input type=file)

    HTML+JAVA 手机端相册或者拍照上传到服务器。前台代码部分:手机选择图片input type=file,通过form表单提交到后台;后台java代码部分:获取表单提交的文件和普通控件数据,将文件写入服务器某路径下

    weui框架实现上传、预览和删除图片功能代码

    &lt;input type="file" class="weui-uploader__input" accept="image/*" multiple /&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; ``` 接下来,我们需要编写JavaScript代码来处理图片上传、预览和删除。首先,监听文件...

    HTML5视频上传(包含html5自带拍照,录像,音频,附件)

    在视频上传场景中,我们可以创建一个`&lt;input type="file"&gt;`元素,设置其`accept`属性为`.mp4, .webm, .ogg`等视频格式,以限制用户只能选择视频文件进行上传。 ```html &lt;input type="file" accept="video/mp4, ...

    input type=file 及时预览图片

    &lt;input type="file" id="imageUpload" accept="image/*"&gt; ``` 这里,`accept="image/*"` 参数限制了用户只能选择图像文件。`id="imageUpload"` 是为了方便我们通过JavaScript来访问这个元素。 接下来,我们需要...

    jQuery完全实例.rar

    创建一个 &lt;input&gt; 元素必须同时设定 type 属性。因为微软规定 &lt;input&gt; 元素的 type 只能写一次。 jQuery 代码: // 在 IE 中无效: $("&lt;input&gt;").attr("type", "checkbox"); // 在 IE 中有效: $("&lt;input type='...

    vue实现移动端input上传视频、音频

    vue移动端input上传视频、音频,供大家参考,具体内容如下 ... &lt;div class=title&gt;现场视频&lt;/div&gt; &lt;div class=upLoad&gt; ... id=pop_video type=file accept=video/* capture=camcorder v-on:change=getVideo

    关于input的file 控件及美化

    &lt;input type="file" name="fileField" class="file" id="fileField" size="28" /&gt; &lt;/form&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; ``` 在这个例子中,`.file-box` 容器允许我们为整个组件设置定位和大小。`.txt` 类代表模拟的...

    input file图片上传即时预览

    当我们设置`&lt;input type="file" accept="image/*"&gt;`时,用户只能选择图像文件。为了让用户在选择图片后能立即预览,我们需要利用JavaScript和HTML5的File API。 **1. HTML部分:** 创建一个`&lt;input type="file"&gt;`...

    jQuery实现input[type=file]多图预览上传删除等功能

    下面我们了解一下,多图...input id=upload type=file accept=image/* multiple=multiple&gt; &lt;button class=btn&gt;点击上传&lt;/button&gt; &lt;/div&gt; &lt;div class=img-box&gt; &lt;!-- 存放预览图片 --&gt; &lt;/div&gt;

    上传控件input file 样式美化

    在网页设计中,上传控件`&lt;input type="file"&gt;`是必不可少的元素,它允许用户选择本地文件并上传到服务器。然而,由于浏览器的安全限制,这个控件的默认样式通常非常简陋,无法直接通过CSS进行大幅度的美化。本教程将...

    android 之 webView 显示h5 执行选择图片或者拍照功能

    &lt;input accept="image/*" capture="camera" id="imgFile" name="imgFile" type="file"&gt; 用安卓的 webView 控件来显示h5网页 然后给webView 设置WebChromeClient WebChromeClient 主要处理解析,渲染网页等浏览器做...

    HTML5+jQuery+Canvas调用手机拍照功能上传图片

    &lt;input type="file" accept="image/*;capture=camera"&gt; ``` 当用户点击这个输入框,手机会弹出相机应用,让用户拍照。拍完照后,图片会作为文件对象返回到JavaScript中。 接下来,jQuery作为一个流行的JavaScript...

    HTMEL5调用手机摄影头源代码

    2. `captureImage`函数创建一个隐藏的`&lt;input type="file"&gt;`元素,并设置`accept`属性为`image/*`,表示允许用户选择任何类型的图片。`capture`属性设置为`camera`,在支持的设备上会强制调用摄像头而非相册。 3. 当...

    struts2实现单个图片上传

    &lt;input type="file" name="image" accept="image/*" /&gt; &lt;input type="submit" value="上传图片" /&gt; &lt;/form&gt; ``` 4. **结果页面**:当图片上传成功后,可以显示一个确认消息或者预览图片。在`/success.jsp`中,你...

    html表单和数据完整性

    - 对于具有相同`name`属性的元素(如多个`&lt;input type="radio"&gt;`),需要通过索引来访问具体的一个。 #### 数据完整性与验证 数据完整性是指确保数据准确无误的过程。在Web表单中,这通常涉及以下方面: - **前端...

Global site tag (gtag.js) - Google Analytics