테스트 사이트 - 개발 중인 베타 버전입니다

상품등록시 이미지 미리보기

· 2년 전 · 1595 · 4
업로드이후_사진보이기.png

/adm/shop_admin/itemform.php 파일 수정

 

테스트 위치

http://music1020.iwinv.net/adm/

admin / 1234

 

수정내용

[code]

//수정전

<input type="file" name="it_img<?php echo $i; ?>" id="it_img<?php echo $i; ?>" >

//수정후

<input type="file" name="it_img<?php echo $i; ?>" id="it_img<?php echo $i; ?>" onChange="readURL(this,<?=$i?>)">

<img id="View<?=$i?>" src="#" alt="이미지 미리보기" style="width: 120px;display:none;"/>

[/code]

 

하단스크립트

[code]

function readURL(input, num) {
        if (input.files && input.files[0]) {
        var reader = new FileReader();

        reader.onload = function (e) {
                $('#View'+num).attr('src', e.target.result);
                $('#View'+num).css('display', '');
            }

          reader.readAsDataURL(input.files[0]);
        }
    }

[/code]

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

댓글 4개

2년 전
감사 합니다.
감사합니다
2년 전
감사합니다
2년 전

감사합니다!!!

게시글 목록

번호 제목
13945
13943
13939
13932
13931
13923
13911
13906
13891
13884
13873
13861