if( $("#file").val() != "" ){
var ext = $('#file').val().split('.').pop().toLowerCase();
if($.inArray(ext, ['gif','png','jpg','jpeg']) == -1) {
alert('gif,png,jpg,jpeg 파일만 업로드 할수 있습니다.');
return;
}
}
#file은 파일 id
출처 : http://stackoverflow.com/questions/651700/how-to-have-jquery-restrict-file-types-on-upload
'개발' 카테고리의 다른 글
[javascript] 이미지 실제 사이즈 알아내기 (0) | 2013.08.07 |
---|---|
[MySQL] case문 사용시 blob으로 리턴될 경우. (0) | 2013.08.03 |
[jQuery/Javascript] 달력 datepicker v2.2 (29) | 2013.04.22 |
[jQuery] 특정 DIV 프린트하기 (0) | 2013.03.28 |
[jQuery] table excel로 다운로드 하기 (0) | 2013.03.28 |