728x90
반응형
1. JSP
<input type="file" name="fileName" id="fileName">
2. JS
window.onload=function(){
target=document.getElementById('fileName');
target.addEventListener('change',function(){
if(target.value.length != 0){
// js에서는 파일 경로가 fakePath로 뜨기때문에 URL.create를 사용한다
var path = URL.createObjectURL(target.files[0]);
window.open(path); // window.open으로 해당 파일을 새창으로 연다
//location.href();
$('#originName').html(target.files[0].name);
}else{
$('#originName').html("");
}
});
}
해당 소스를 복사붙이기 하면 완벽하게 끝난다
728x90
반응형
'TIP)' 카테고리의 다른 글
[Javascript] JavaScript) input type="file" UI 커스텀 및 파일명 출력하는법(Multiple) (1) | 2023.03.08 |
---|---|
[영상편집] 프리미어 프로 영상자르는 법 / 컷 편집 팁 (0) | 2023.02.21 |
SQL 쿼리문 변환하는 사이트 (0) | 2023.02.10 |
[Java] Calendar 객체를 통한 해당 월 말일 구하기 (0) | 2023.01.26 |
컴맹도 익힐 수 있는 브라우저 인터넷 사용 기록(캐시) 지우는 방법 (0) | 2023.01.20 |
댓글