移动端input type=“file” 在移动端H5页面实现调用本地相册拍照录音

Posted vickylinj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端input type=“file” 在移动端H5页面实现调用本地相册拍照录音相关的知识,希望对你有一定的参考价值。

<input type="file" accept="image/*" mutiple="mutiple" capture="camera" />

三个属性:

accept - 规定可提交的文件类型。

capture - 系统所捕获的默认设备。camera(照相机),camcorder(摄像机),microphone(录音)

mutiple - 支持多选。当支持多选时,multiple优先级高于capture。

几种写法:

<input type="file" accept="image/*" mutiple="mutiple" capture="camera" /> <!-- ios 和 安卓都可以调用摄像头 -->

<input type="file" name="upload" accept="image/png,image/jpeg,image/gif" capture="camera"> <!-- 在安卓无法调用摄像头 -->

<input type="file" accept=".gif,.jpg,.png,.jpeg,.bmp" name="file" /> <!-- 在安卓微信会出现 "No apps can perform this action" 在uc浏览器正常。 ios能正常使用。pc端可以使用 -->

<input type="file" accept="image/*" capture="camera"> <!-- 调用相机 -->

<input type="file" accept="video/*" capture="camcorder"> <!-- 调用摄像机 -->

<input type="file" accept="audio/*" capture="microphone"> <!-- 调用录音机 -->

<!-- 不加上capture,则只会显示相应的,例如下三种依次是:拍照或图库,录像或图库,录像或拍照或图库, --> <input type="file" accept="image/*" > <input type="file" accept="video/*" > <input type="file" accept="audio/*" >

 

以上是关于移动端input type=“file” 在移动端H5页面实现调用本地相册拍照录音的主要内容,如果未能解决你的问题,请参考以下文章

移动端开发的一些技巧总结

移动端图片操作——上传

input[type=file]标签 本地文件拍照录像 上传的兼容性问题

input[type=file]标签 本地文件拍照录像 上传的兼容性问题

笔记移动端H5数字键盘input type=number的处理(IOS和Android)

移动端BUG兼容