没有activexobject获取上传文件大小?
是否可以使用java脚本或不使用activex对象来获取上传文件的文件大小? 它应该与所有浏览器兼容。
Is it possible to get the file size of an uploading file using java script or without activex object ?
It should be compatible with all browsers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
兼容所有浏览器? - 没有解决方案
与 firefox、chrome、safari、opera 兼容?- 以下脚本
不适用于 IE8(尚未在 IE9 上测试)
Compatible for all browsers? - no solution
Compatible with firefox,chrome,safari,opera ?- following script
Doesnt works with IE8(yet to test on IE9)
让您知道 IE-9 或更低版本不支持 jQuery 文件 API。在这些情况下,我们必须通过创建 ActiveXObject 来检查文件大小,因为这是在这种情况下处理系统文件以在上传之前获取文件大小的唯一方法。
但这里还有另一个问题,比如 ActiveX 需要在客户端计算机上的浏览器上正确安装/启用/配置,否则将无法识别。因此我有三种方法来获取文件大小:-
1)通过将整个文件传输到服务器来获取文件大小,并从服务器返回文件大小。
2)在客户端使用Silverlight、Flash之类的东西很容易找到。
3) 当文件超过文件大小限制时,将文件分块上传到服务器,然后向用户返回一条消息。
在 jQuery 中获取文件大小(IE 10、FF、Chrome 浏览器支持)
使用 ajax 获取文件大小,仅发出 HEAD 请求:
希望这会有所帮助。
参考 :-
http://www.aspnetcodes.com /2012/07/example-to-get-file-size-before-upload.html
Let you know that jQuery files API is not supported for IE-9 or lower versions. In these cases we are bound to check file size by creating the ActiveXObject as this is the only way for that case to deal with system files to get the file size before upload.
But here another issue is there like ActiveX needs to be installed/enabled/configured properly on browser on client machine otherwise it will not be recognized. Therefore i have three ways to get file size here :-
1) Get the file size by transferring the whole file to server and return the file size from there.
2) It is very easily can be found by using the Silverlight, Flash or such things on client-side.
3) Upload the file in chunks to server when it crosses the file size limit then return user with a message.
Get file size in jQuery(supported in IE 10, FF, Chrome browsers)
Get file size in using ajax, making HEAD request only :
Hope this will be helpful.
References :-
http://www.aspnetcodes.com/2012/07/example-to-get-file-size-before-upload.html