码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript客户端判断文件类型及大小

时间:2014-08-19 12:16:34      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:style   http   java   os   io   文件   for   ar   

<html>
<head>
<title>潜水式无堵塞排污泵</title>

<meta http-equiv="content-type" content="text/html;charset=gb2312">
</head>
<body>
以下是一个客户端控制file上传图片类型和大小的示例(注意:由于是客户端限制,所以用户可以绕过这个限制):
<script language="javascript">
<!--
var FileMaxSize = 50;//限制上传的文件大小,单位K
function chkform(){
if (document.HwForm.Photo.value==""){alert("请选择图片!");document.HwForm.Photo.focus();return false;}
if(document.HwForm.PhotoFileSize.value<=0){alert("请重新选择图片!");document.HwForm.Photo.focus();return false;}
if(document.HwForm.PhotoFileSize.value>FileMaxSize*1024){alert("图片不能超过"+FileMaxSize+"K,请重新选择!");document.HwForm.Photo.focus();return false;}
alert("图片类型和大小正确,可以提交!");return false;
}
//-->
</script>
<form method="post" name="HwForm" onsubmit="return(chkform());" enctype="multipart/form-data">
请选择一个50K以内的图片:<input type="file" name="Photo" onpropertychange="if(document.HwForm.Photo.value!=‘‘){document.getElementById(‘PhotoImg‘).src=document.HwForm.Photo.value;}"><img style="position:absolute;top:-100000px;left:-100000px;" onerror="document.all.PhotoFileSize.value=‘-1‘;alert(‘图片类型错误,请重新选择!‘);" onload="if(document.getElementById(‘PhotoImg‘).fileSize<=1024*FileMaxSize){document.all.PhotoFileSize.value=document.getElementById(‘PhotoImg‘).fileSize;}else{alert(‘图片不能超过‘+FileMaxSize+‘K,请重新选择!‘);document.all.PhotoFileSize.value=‘-1‘;}" id="PhotoImg"><input size="3" type="hidden" name="PhotoFileSize" value="-1">
<input type="submit" value="提交"> <input type="reset" value="重置">
</form>
</body>
</html>

JavaScript客户端判断文件类型及大小,布布扣,bubuko.com

JavaScript客户端判断文件类型及大小

标签:style   http   java   os   io   文件   for   ar   

原文地址:http://www.cnblogs.com/youtianxia/p/3921455.html

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