码迷,mamicode.com
首页 > Web开发 > 详细

js限制上传图片类型和大小

时间:2014-09-17 18:31:52      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   io   java   ar   sp   cti   log   on   c   

 

<script type="text/javascript">
function checkFile(brandLogo){
var file=brandLogo.value;
if(file==""){
alert("请上传图片");
return false;
}else{
if(!/\.(gif|jpg|jpeg|png|GIF|JPG|PNG)$/.test(file)){
alert("图片类型必须是.gif,jpeg,jpg,png中的一种");
$("#brandLogo").val(‘‘);
return false;
}else{
var img=new Image();
img.src=file;
var filesize = image.filesize;
if(filesize>10*1024){
alert("图片不能大于10M");
$("#brandLogo").val(‘‘);
return false;
}
}
}
return true;
}
</script>

 

<input id="brandLogo" type="file" name="brandLogo" onchange="checkFile(this);"  style="width:80"/>

js限制上传图片类型和大小

标签:style   io   java   ar   sp   cti   log   on   c   

原文地址:http://www.cnblogs.com/lanliying/p/3977553.html

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