jquery.support以检测JavaScript的File API?

前端之家收集整理的这篇文章主要介绍了jquery.support以检测JavaScript的File API?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我找不到检测如果浏览器支持 File API通过 .support在jQuery中的方式.

有人知道吗

(顺便提一句:用IE检测输入[type = file]文件的大小的方法)

解决方法

它似乎没有在jQuery中实现,但你可以检查一下自己: http://jsfiddle.net/pimvdb/RCz3s/.

< input type ='file'>的文件属性如果实现了它,返回一个空的FileList,否则它不被定义(即它是未定义的).

var support = (function(undefined) {
    return $("<input type='file'>")    // create test element
                 .get(0)               // get native element
                 .files !== undefined; // check whether files property is not undefined
})();
原文链接:https://www.f2er.com/jquery/176613.html

猜你在找的jQuery相关文章