function checkAttachment(){
alert( "here");
var attachmentArray = document.getElementsByTagName("input");
var attachmentSizeArray = document.getElementsByName("fileMaxSize")
var index = 0; for (var i = 0; i < attachmentArray.length; i ){
var attachment = attachmentArray[i]
if (attachment.type=="file"){
if (!isPhoto (attachment.value )){
alert("업로드된 첨부 파일은 사진이어야 합니다.");
attachment.focus()
return false
}
if (getFileSize( attachment) > 1024 * attachmentSizeArray[index].value){
alert("업로드된 첨부 파일은 " attachmentSizeArray[index].value "k.")
attachment.focus(); 🎜>false 반환
}
index ;
}
}
true 반환
}
function getFileSize(fileObject){
var image= new Image();
image.dynsrc=fileObject.value;
return image.fileSize;
}
첫 번째 방법은 페이지의 모든 파일 컨트롤을 가져오는 것입니다. 그리고 해당 파일 크기 제한,
핵심은 두 번째 방법인데, 이미지로 아주 교묘하게 해결한 방법인데, (*^__^*) 히히...