jquery 확장자 체크
페이지 정보
본문
$("#imagefile").on("change", function(){
var ext = $(this).val().split('.').pop().toLowerCase();
if($.inArray(ext, ['gif','png','jpg','jpeg']) == -1) {
alert('gif,png,jpg,jpeg 파일만 업로드 할수 있습니다.');
return;
}
return;
});
- 이전글스크롤바를 이쁘게 nicescroll 18.10.01
댓글목록
등록된 댓글이 없습니다.