javscript1 04. Javascript snippets - 파일 확장자 체크 /** * 업로드 파일 확장자 체크. */function fileCheck(id){ var thumbext = ""; if(typeof id == "object"){ thumbext = id.value; } else { thumbext = document.getElementById(id).value; } thumbext = thumbext.slice(thumbext.lastIndexOf(".") + 1).toLowerCase(); if(thumbext != "jpg" && thumbext != "png" && thumbext != "gif" && thumbext != "jpeg"){ alert('이미지 파일(jpg, png, gif, jpeg)만 등록 가능합니다.'); return false; } els.. 2017. 6. 18. 이전 1 다음 728x90