파일업로드 하였을 경우 파일의 리스트를 보여주는 예제 입니다. (Spring으로 개발한 파일업로드는 여기를 참고하세요.)
아래 소스를 확인하시기 바랍니다.
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 32 33 | <!doctype html> <html lang="kr"> <head> <meta charset="utf-8"> <title>demo</title> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> <script> $(document).ready( function() { $("input[type=file]").change(function () { var fileInput = document.getElementById("contract_file"); var files = fileInput.files; var file; for (var i = 0; i < files.length; i++) { file = files[i]; alert(file.name); } }); }); </script> </head> <body> <input type="file" id="contract_file" multiple> </body> </html> |
jquery 디데이 계산 (D-day, Dday) (4) | 2016.10.11 |
---|---|
jquery 라디오버튼 선택 확인, 체크박스 선택 확인, 셀렉트박스 선택 확인 (0) | 2016.09.27 |
jquery 글자 byte, 문자열 byte(바이트) 길이 체크하기 예제 (1) | 2016.09.07 |
Html 색상표 모음, 색상코드표 (RGB), 이미지X, 복사 가능 (0) | 2016.09.07 |
Table을 DIV로 표현하기 (예제) (0) | 2016.09.06 |
댓글 영역