没有activexobject获取上传文件大小?

发布于 2024-12-07 15:18:43 字数 59 浏览 0 评论 0原文

是否可以使用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 技术交流群。

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

发布评论

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

评论(2

东京女 2024-12-14 15:18:43

兼容所有浏览器? - 没有解决方案

与 firefox、chrome、safari、opera 兼容?- 以下脚本

document.getElementById("file_elem_id").files[0].size

不适用于 IE8(尚未在 IE9 上测试)

Compatible for all browsers? - no solution

Compatible with firefox,chrome,safari,opera ?- following script

document.getElementById("file_elem_id").files[0].size

Doesnt works with IE8(yet to test on IE9)

风追烟花雨 2024-12-14 15:18:43

让您知道 IE-9 或更低版本不支持 jQuery 文件 API。在这些情况下,我们必须通过创建 ActiveXObject 来检查文件大小,因为这是在这种情况下处理系统文件以在上传之前获取文件大小的唯一方法。

但这里还有另一个问题,比如 ActiveX 需要在客户端计算机上的浏览器上正确安装/启用/配置,否则将无法识别。因此我有三种方法来获取文件大小:-
1)通过将整个文件传输到服务器来获取文件大小,并从服务器返回文件大小。
2)在客户端使用Silverlight、Flash之类的东西很容易找到。
3) 当文件超过文件大小限制时,将文件分块上传到服务器,然后向用户返回一条消息。

在 jQuery 中获取文件大小(IE 10、FF、Chrome 浏览器支持)

$('#fileInputID').change(function(){
        var file=this.files[0];
        alert(file.size||file.fileSize);
    })

使用 ajax 获取文件大小,仅发出 HEAD 请求:

var response = $.ajax({
type: "HEAD",
url: fileurl,// file url on server
success: function () {
    alert("Size of file is " + request.getResponseHeader("Content-Length"));
  }
});

希望这会有所帮助。

参考 :-
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)

$('#fileInputID').change(function(){
        var file=this.files[0];
        alert(file.size||file.fileSize);
    })

Get file size in using ajax, making HEAD request only :

var response = $.ajax({
type: "HEAD",
url: fileurl,// file url on server
success: function () {
    alert("Size of file is " + request.getResponseHeader("Content-Length"));
  }
});

Hope this will be helpful.

References :-
http://www.aspnetcodes.com/2012/07/example-to-get-file-size-before-upload.html

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