Fork me on GitHub

IOS H5无法选择文件上传,文件选择灰色

主要原因是ios环境下无法识别accept属性,所以需要判断下,当苹果手机时,把里面的这个属性清空就行

<input type="file" name="uploadify" accept="file/*" id="uploadify" placeholder="请选择">

$(function () {
    //苹果手机无法识别上传文件的accept,所以动态判断
    var ua = navigator.userAgent.toLowerCase()
    if (ua.indexOf("iphone") != -1) {
        $("#uploadify").attr('accept', '');
    } else {
        $("#uploadify").attr('accept', 'file/*');
    }
})

 

posted @ 2024-02-02 14:10  WantRemake  阅读(304)  评论(0编辑  收藏  举报