jquery.support 检测 JavaScript 的文件 API?
我找不到通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它似乎没有在 jQuery 中实现,但你可以自己检查一下: http://jsfiddle.net/pimvdb/ RCz3s/。
的
files
属性如果已实现,则返回一个空的FileList
,否则未定义(即它是未定义
)。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 emptyFileList
if it's implemented, and otherwise it is not defined (i.e. it isundefined
).另一种检查方法是检查 File API 类型是否存在:
Another way to check is just by checking the presence of the File API types: