jquery / input file tag / 파일명 / file name 구하기
2016. 1. 5. 14:27ㆍlanguage/jquery
파일명 구하기 예제입니다.
jquery 사용은 필수이다.
파일 태그에서 파일명을 구하는 방법이다.
태그 :
<input type="file" id="excelFile" name="excelFile" title="첨부파일" />
스크립트 :
<script type="text/javascript">
var fileValue = $("#excelFile").val().split("\\");
var fileName = fileValue[fileValue.length-1]; // 파일명
</script>
'language > jquery' 카테고리의 다른 글
jquery 를 이용해서 원하는 태그(위치)로 스크롤 이동하기 (83) | 2016.05.11 |
---|---|
jquery 를 이용하여 화면 맨위로 자연스럽게 올라가는 TOP 버튼 만들기 (26) | 2016.04.21 |
jquery form serialize 를 이용하여 json으로 만들기 (2) | 2016.04.15 |
jquery ajax 를 이용한 간편 파일 업로드 ( fileObject 를 바로 업로드 하는 방식 ) (4) | 2016.04.08 |
jquery / 말풍선 플러그인 / poshytip (0) | 2016.01.05 |
jqgrid / resize / 그리드 사이즈를 화면 창에 따라 유동적으로 변경 (0) | 2016.01.05 |
jqgrid / 컬럼 show / hide / checked box / 컬럼 표시, 숨기기 (0) | 2016.01.05 |
jquery / selectBox plugins / 플러그인 모음 (0) | 2016.01.05 |
jquery / jqGrid / custom pager / custom paging / 그리드 / 페이징 (10) | 2016.01.05 |
jquery / 각종 다이어그램 플러그인 / 차트 / 관계 플러그인 (0) | 2016.01.05 |