我正在通过Android手机上的网页(在网络视图中)处理图像/ pdf上传-
1.在button1上单击时,我想在单击按钮时直接打开相机,当前它显示带有文件,相机和完整操作选项的图像选择器。
2.在button2上单击,只需打开“文件”选项(接受pdf和图像),而不要打开相机。
对于Q1-我尝试了capture =“ camera”,capture =“ capture”,capture =“ user”,capture =“ environment”,但是所有这些都打开了具有所有选项的图像选择器。
第二季度-我尝试了accept =“。pdf,.jpg,.jpeg,.gif”,accept =“ application / pdf,image / jpg,image / jpeg,image / gif”
这是我的html代码:
<input type="file" id="uploadFile" accept=".pdf,.jpg,.jpeg,.gif" style="display:none;"/>
<input type="file" id="capture" accept="image/*" capture="capture" style="display:none;">
注意:
<input type="file" id="capture" accept="image/*" capture="capture" style="display:none;">
这会触发iOS应用上的直接相机应用。但android显示所有文件上传选项。