html5 input标签上传完美兼容ios、android

<input class="js_upFile cover1" type="file" name="cover" accept="image/*" capture="camera" multiple>

上述代码不能很好地兼容ios,加上下面代码即可。

$(function () {
   var nav = navigator.userAgent.toLowerCase();
    var isIos = (nav.indexOf('iphone') != -1) || (nav.indexOf('ipad') != -1);
   if (isIos) {
       $("input:file").removeAttr("capture");
      };
   })

猜你喜欢

转载自blog.csdn.net/D_claus/article/details/84766887
今日推荐