欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决H5页面调用手机相机相册,安卓正常,但ios没办法选择相册

程序员文章站 2022-06-24 12:26:28
H5页面调用手机相机相册,安卓正常,但ios没办法选择相册
$(function () { //获取浏览器的userAgent,...

H5页面调用手机相机相册,安卓正常,但ios没办法选择相册

<div onclick="javascript:$('#addPhoto').click();"></div>
<input type="file" accept="image/*" capture="camera" id="addPhoto" style="display: none;" @change="addPhoto()">
$(function () {
    //获取浏览器的userAgent,并转化为小写
    var ua = navigator.userAgent.toLowerCase();
    //判断是否是苹果手机,是则是true
    var isIos = (ua.indexOf('iphone') != -1) || (ua.indexOf('ipad') != -1);
    if (isIos) {
        $("#addPhoto").removeAttr("capture");
    };
})

本文地址:https://blog.csdn.net/weixin_43153539/article/details/110519256