<input type="file">
在ios中,会
而安卓中,没有这些选项
解决方法:
给input 加上accept属性
<input type="file" accept="image/*" /> //调用相机 ,图片或者相册 (两者都行)
加上了capture=camera"属性之后安卓手机就直接调用了相机,没有了图库的选项
<input type="file" accept="image/*;capture=camera"> //直接调用相机
<input type="file" accept="video/*;capture=camcorder"> // 调取视频
<input type="file" accept="audio/*;capture=microphone"> //调取音频
注:capture表示,可以捕获到系统默认的设备,比如:camera--照相机;camcorder--摄像机;microphone--录音。