jquery.support 检测 JavaScript 的文件 API?

发布于 2024-12-03 18:34:32 字数 275 浏览 1 评论 0原文

我找不到通过 File API 检测浏览器是否支持的方法href="http://api.jquery.com/jQuery.support/" rel="noreferrer">.support jQuery 中的方法。

有人知道吗?

(顺便说一句:用 IE 检测 input[type=file] 中文件大小的方法?)

I can't find the way to detect if the browser supports the File API through the .support methon in jQuery.

Anyone knows it?

(Incidentally: a way to detect the size of a file in input[type=file] with IE?)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

红尘作伴 2024-12-10 18:34:32

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

files 属性如果已实现,则返回一个空的 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
})();

It does not seem to be implementd in jQuery, but you could check yourself: http://jsfiddle.net/pimvdb/RCz3s/.

The files property of an <input type='file'> returns an empty FileList if it's implemented, and otherwise it is not defined (i.e. it is undefined).

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
})();
旧梦荧光笔 2024-12-10 18:34:32

另一种检查方法是检查 File API 类型是否存在:

var FileApiSupported = !!('File' in window &&
                          'FileReader' in window &&
                          'FileList' in window &&
                          'Blob' in window);

Another way to check is just by checking the presence of the File API types:

var FileApiSupported = !!('File' in window &&
                          'FileReader' in window &&
                          'FileList' in window &&
                          'Blob' in window);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文