Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Intent
- activity
- Java
- JSON
- WebView
- 여부
- launchMode
- 특수문자
- TitleBar
- jdom
- SQLite
- 존재
- MSSQL
- Progressbar
- manifest
- bean
- File
- Bitmap
- rownum
- tab
- keyboard
- 문자열
- custom
- QuickAction
- listview
- Android
- ArrayList
- HTML5
- LOG4J
- javamail
Archives
- Today
- Total
안웅
[Jquery] 원하는 파일 확장만 선택하기 본문
<input type="file" id="report" name="report"/>
//파일 선택시 $('#report').on("change", function(){ //확장자 비교 //http://stackoverflow.com/questions/14852090/jquery-check-for-file-extension-before-uploading var filename = $('#report').val(); var extension = filename.replace(/^.*\./, ''); if (extension == filename) { extension = ''; } else { extension = extension.toLowerCase(); } //이미지 파일은 JPG, PNG 확장자만 가능 if( (extension != 'jpg') && (extension != 'png') ) { //초기화 //http://stackoverflow.com/questions/1043957/clearing-input-type-file-using-jquery var control = $("#report"); control.replaceWith( control = control.clone( true ) ); alert("이미지 파일은 JPG, PNG 확장자만 가능합니다."); } });
Comments