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 태그를 추가




댓글 없음:

댓글 쓰기

[oracle]백업및 복구

[oracle]백업및 복구 오라클 덤프 백업및 복구 윈도우 서버 기반 간단 정리 --디렉터리 조회 sqlplus 또는 dbtool 입력시작 SELECT * FROM DBA_DIRECTORIES ; --D:...