84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
Comment prévisualiser localement et déterminer la taille des fichiers PDF téléchargés localement (compatible avec le navigateur IE9)
ringa_lee
//文件大小可以根据此方法判断,兼容ie8,ie9,ie9以上也支持 function getFileSize(obj){ try{ var file = obj; file.select(); file.blur(); var path = document.selection.createRange().text; var fso = new ActiveXObject("Scripting.FileSystemObject"); fileSize = fso.GetFile(path).size; alert(fileSize);//弹出文件大小 }catch(e){ alert(e+"\n"+"如果错误为:Error:Automation 服务器不能创建对象;"+"\n"+"请按以下方法配置浏览器:"+"\n"+"请打开【Internet选项-安全-Internet-自定义级别-ActiveX控件和插件-对未标记为可安全执行脚本的ActiveX控件初始化并执行脚本(不安全)-点击启用-确定】"); return window.location.reload(); }} 转载链接:http://www.imooc.com/article/9593
ringa_lee