Posted on 2007. 10. 23. 10:41
Filed Under Javascript
// 파일업로드 확장자 체크 함수
function fileChk() {
var fileValue = document.uccWrite.file.value;
extArr = new Array(".avi",".wmv",".mpg",".mpeg",".jpg",".gif",".bmp"); // 허용할 확장자 배열
if(!fileValue) return false;
while (fileValue.indexOf("\\") != -1) {
fileValue = fileValue.slice(fileValue.indexOf("\\")+1);
extValue = fileValue.slice(fileValue.indexOf(".")).toLowerCase();
for(var i=0; i<extArr.length; i++) {
if(extArr[i] == extValue) {
return true;
break;
}
}
}
return false;
}
function fileChk() {
var fileValue = document.uccWrite.file.value;
extArr = new Array(".avi",".wmv",".mpg",".mpeg",".jpg",".gif",".bmp"); // 허용할 확장자 배열
if(!fileValue) return false;
while (fileValue.indexOf("\\") != -1) {
fileValue = fileValue.slice(fileValue.indexOf("\\")+1);
extValue = fileValue.slice(fileValue.indexOf(".")).toLowerCase();
for(var i=0; i<extArr.length; i++) {
if(extArr[i] == extValue) {
return true;
break;
}
}
}
return false;
}