jQuery 업로드 파일 형식 및 크기 확인

912 단어
자세히 보기
jQuery는 업로드된 파일의 형식과 크기를 확인합니다.
$("#file_id").live('change', function(){
	    var fileName = $('#file_id').val().split('\\'); //       
	    var fileSize =  document.getElementById('file_id').files[0].size; //      ;
	    fileName2 = fileName[fileName.length-1]; //      
	    filePath = $('#staffcert_context').val().toLowerCase().split(".");
	    fileType =  filePath[filePath.length - 1]; //           zip rar           
	    
	    if(!(fileType == "cer" || fileType == "pem" || fileType == "txt")){
	    	alert("         !");
	    }
		if(fileSize>1024*1024*10){
	    	alert('      10M   ');
	    }
	});

좋은 웹페이지 즐겨찾기