美文网首页
input type=“file” 在移动端H5页面实现调用本地

input type=“file” 在移动端H5页面实现调用本地

作者: 一名有马甲线的程序媛 | 来源:发表于2021-09-23 14:49 被阅读0次
<input type="file" accept="image/*" mutiple="mutiple" capture="camera" />

三个属性

  • accept - 规定可提交的文件类型。
  • capture - 系统所捕获的默认设备。camera(照相机),camcorder(摄像机),microphone(录音)
  • mutiple - 支持多选。当支持多选时,multiple优先级高于capture。

几种写法

  1. ios 和 安卓都可以调用摄像头
<input type="file" accept="image/*" mutiple="mutiple" capture="camera" />
  1. 在安卓无法调用摄像头
<input type="file" name="upload" accept="image/png,image/jpeg,image/gif" capture="camera"> 
  1. 在安卓微信会出现 "No apps can perform this action" ;
    在uc浏览器正常;
    ios能正常使用;
    pc端可以使用。
<input type="file" accept=".gif,.jpg,.png,.jpeg,.bmp" name="file" />
  1. 调用相机
<input type="file" accept="image/*" capture="camera">
  1. 调用摄像机
<input type="file" accept="video/*" capture="camcorder">
  1. 调用录音机
<input type="file" accept="audio/*" capture="microphone">
  1. 不加上capture,则只会显示相应的
// 拍照或图库
<input type="file" accept="image/*" >

// 录像或图库
<input type="file" accept="video/*" >

// 录像或拍照或图库
<input type="file" accept="audio/*" >

点击查看原文

本文会持续更新,尽情期待~ 点击查看 好心小萍宝 的全部简书

相关文章

网友评论

      本文标题:input type=“file” 在移动端H5页面实现调用本地

      本文链接:https://www.haomeiwen.com/subject/quhogltx.html