>  기사  >  웹 프론트엔드  >  JavaScript는 이미지 파일의 크기를 읽습니다_javascript 기술

JavaScript는 이미지 파일의 크기를 읽습니다_javascript 기술

WBOY
WBOY원래의
2016-05-16 18:50:551196검색

코드 복사 코드는 다음과 같습니다.

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;
}


첫 번째 방법은 페이지의 모든 파일 컨트롤을 가져오는 것입니다. 그리고 해당 파일 크기 제한,
핵심은 두 번째 방법인데, 이미지로 아주 교묘하게 해결한 방법인데, (*^__^*) 히히...
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.