JS上传图片前的限制包括(jpg jpg gif及大小高宽)等_javascript技巧

WBOY
Release: 2016-05-16 17:46:08
Original
1896 people have browsed it
功能
1.限制扩展名:只能jpg || jpg和gif
2.限制图片大小:K为单位
3.限制图片宽高:px为单位(要么都有,要么都无)
4.限制已经损坏的图片(没有预览的图片)
5.限制更改过扩展名的图片(比如强制把一个动态的GIF扩展名改为JPG了)
使用限制
要在InputFile里增加onchange事件,使其选择文件后能在一个img标签里加载出来,否则使用会出错
imglimit.js
复制代码代码如下:

function limitImg(){
var img=document.getElementById(arguments[0]);//显示图片的对象
var maxSize=arguments[1];//
var allowGIF=arguments[2]||false;
var maxWidth=arguments[3]||0;
var maxHeight=arguments[4]||0;
var postfix=getPostfix(img.src);
var str=".jpg";
if(allowGIF){str+=".gif"}
if(str.indexOf(postfix.toLowerCase())==-1){
if(allowGIF){return "图片格式不对,只能上传jpg或gif图像";}else{return "图片格式不对,只能上传jpg图像";}
}else if(img.fileSize>maxSize*1024){
return "图片大小超过限制,请限制在"+maxSize+"K以内";
}else{
if(img.fileSize==-1){
return "图片格式错误,可能是已经损坏或者更改扩展名导致,请重新选择一张图片";
}else{
if(maxWidth>0){
if(img.width>maxWidth){
return "图片宽度超过限制,请保持在"+maxWidth+"像素内";
}else{
if(img.height>maxHeight){
return "图片高度超过限制,请保持在"+maxHeight+"像素内";
}else{
return "";
}
}
}else{
return "";
}
}
}
}
//根据路径获取文件扩展名
function getPostfix(path){
return path.substring(path.lastIndexOf("."),path.length);
}

页面调用:
复制代码代码如下:



JS上传图片前的限制包括(jpg jpg gif及大小高宽)等_javascript技巧



Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!