반응형
기본으로 되지는 않고 jquery 의 도움을 써서 해결이 되었다.
$("input[type='file']").on('change',function(){
$(this).next('.custom-file-label').html(event.target.files[0].name);
});
<div class="custom-file">
<input type="file" name="user_file" class="custom-file-input">
<label class="custom-file-label" for="inputGroupFile01">Choose file</label>
</div>
반응형
'Story > html/css' 카테고리의 다른 글
아이폰에서 iframe 내용에 스크롤이 되지 않을때. (0) | 2018.02.20 |
---|---|
window sapari 브라우져에서 한자가 깨져보일때 (0) | 2017.12.14 |
Youtube 연속재생 loop (0) | 2016.12.15 |
css style 로 input 에 대문자로만 입력받기 (0) | 2016.09.02 |
파일첨부에 이미지만 첨부할 수 있도록 처리 input file (0) | 2016.03.09 |