H5页面上传图片,在PC测试一切正确, 但是在手机端操作,微信浏览器和部分手机自带浏览器会出现“没有应用可执行操作”,无法弹出选择图片框。代码如下
<input style=" opacity: 0;width: 90px;height:30px;position: absolute;left:0px;" type="file" name="imgFile" id="imgFile_2" accept="*.jpg,*.png" "uploadIdNumberImgFun('2')"/>
问题点在于:accept="*.jpg,*.png"
修改如下:
方法1.accept="image/jpg,image/png" ,可能出现看到相册,但单个图片是灰色不可选取
方法2. accept="image/*" ,比较建议使用这种,支持所有图片格式
相册是即时拍照,文档是选取现有相册内照片。
原文地址: https://blog.csdn.net/qq_29539827/article/details/89281542