码迷,mamicode.com
首页 > 其他好文 > 详细

前台获取文件大小

时间:2017-11-25 23:41:48      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:type   file   16px   func   pre   element   上传   span   cli   

        <input type="file" id="file"/>
        <input type="button" id="btn" value="js查看文件大小"/>
        <input type="button" id="btn1" value="jq查看文件大小"/>
        <script>
            //js获取上传文件大小(单位:字节)
            document.getElementById("btn").onclick=function(){
                alert(document.getElementById("file").files[0].size);
            };
            //jq获取上传文件大小(单位:字节)    jq转js,加下标即可
            $("#btn1").click(function(){
                alert($("#file")[0].files[0].size);
            });
            
        </script>

 

前台获取文件大小

标签:type   file   16px   func   pre   element   上传   span   cli   

原文地址:http://www.cnblogs.com/57rongjielong/p/7896977.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!