상품등록시 이미지 미리보기
/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개
감사합니다!!!
게시판 목록
그누보드5 플러그인
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 645 |
비버팩토리
|
1개월 전 | 233 | |
| 644 |
|
1개월 전 | 433 | |
| 643 |
11qkr
|
1개월 전 | 346 | |
| 642 | 2개월 전 | 526 | ||
| 641 |
|
2개월 전 | 398 | |
| 640 |
|
2개월 전 | 479 | |
| 639 | 2개월 전 | 482 | ||
| 638 | 2개월 전 | 457 | ||
| 637 | 3개월 전 | 671 | ||
| 636 | 3개월 전 | 868 | ||
| 635 | 3개월 전 | 772 | ||
| 634 |
비버팩토리
|
3개월 전 | 780 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기