2018년 1월 26일 금요일

[javascript] inp[ut file 변경시 변경된 이미지 화면 표시(익스 11, 크롬 정상 작동)

$(document).ready(function(){
$(".uploadfile").on("change",function(){
var objId = $(this).attr("id");

var target = $(this).next();
var val = $(this).val();
var thisDom = $(this)[0];
if (thisDom.files && thisDom.files[0]) {
       
           var reader = new FileReader();
           reader.onload = function (e) {
           
           
            $(target).css("max-width","100%");
               $(target).attr('src', e.target.result);
           }
        }else{
       
        }
        reader.readAsDataURL(thisDom.files[0]);
   
        return false;
});
});


ready 함수에 이벤트 등록



<input  class="uploadfile" type="file" name="mb_biz_img_path">
<img style="max-width:100%;" src="${sessionScope.rb_member.MB_BIZ_IMG_PATH}" alt="이미지가 없습니다." class="uploadImage"/>

밑에 uploadImage 클래스 img 태그를 추가




댓글 없음:

댓글 쓰기

[springboot]실제 JWT 발급 및 검증 구현

실제 JWT 발급 및 검증 구현 이전 단계에서 만든 임시 토큰을 실제 암호화된 JWT(JSON Web Token)로 대체하고, Spring Security 필터를 통해 API 요청을 보호하는 방법을 구현합니다. Part 1: 백엔드 (Spring ...