上传前检查大小 [英] check size before upload

查看:56
本文介绍了上传前检查大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在上传之前无法检查文件的大小

unable to check the size of a file before uploading

推荐答案

function GetSize(file)
{
var fso=new ActiveXObject("Scripting.FileSystemObject");
var f=fso.getFile(file);
return fso.getFile(file).size;
}
function checkFileSize(ctrl){



//check if file size is > 100kb

if(GetSize(ctrl.value)>100000)//10 MB=10485760 B

{

alert('Sorry file size > 1KB');

ctrl.upload.reset();//file grater than 10MB then reset form

}
}


这篇关于上传前检查大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆