첨부파일 확장자 및 용량체크
첨부파일 확장자 및 용량체크// 파일첨부 체크 리스트$("input[id=file]").change(function(){ if($(this).val() != ""){ // 확장자 체크 var ext = $(this).val().split(".").pop().toLowerCase(); if($.inArray(ext, ["gif","jpg","jpeg","png","hwp","pdf","doc","xls","xlsx","ppt","pptx","docx"]) == -1){ alert("gif, jpg, jpeg, png 파일만 업로드 해주세요."); $(this).val(""); return; } // 용량 체크 for (var i=0; i maxSize){ alert(this.files[i].name + "..