美文网首页
微信打开 input file 在Android没有拍照

微信打开 input file 在Android没有拍照

作者: __Object__ | 来源:发表于2019-03-30 14:12 被阅读0次

当写<input type="file"> 的时候,在IOS上可以成功调起拍照和图库两块,在安卓手机上只能调取图库而没有拍照功能;
解决办法:给input 加上accept属性,加上了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 录音。

相关文章

网友评论

      本文标题:微信打开 input file 在Android没有拍照

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