标签: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