$(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 태그를 추가
끝
피드 구독하기:
댓글 (Atom)
[oracle]백업및 복구
[oracle]백업및 복구 오라클 덤프 백업및 복구 윈도우 서버 기반 간단 정리 --디렉터리 조회 sqlplus 또는 dbtool 입력시작 SELECT * FROM DBA_DIRECTORIES ; --D:...
-
수십대의 서버에 특정 쉘을 실행한다거나 파일을 수정해야할경우 호스트 입력 아이디 입력 패스워드 입력은 여간 짜증나는일이 아닐수 없다. 이를 한방에 해주는 방법 teraterm 를 설치한다( putty 는 버리자 ) 예를 들면 19...
-
pom.xml <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId...
-
notice_state 란 이름의 체크박스가 있다 가정하고 $("input[name=notice_state]").bind("click",false); 끝.
댓글 없음:
댓글 쓰기