이미지 업로드시 첨부이미지 미리보기
작성일 06-09-12 12:42
페이지 정보
작성자서방님 조회 160회 댓글 0건본문
이미지 파일을 업로드 하시기 전에 미리보기 하는 팁입니다.
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script>
function img_preview()
{
var imgname = "image";
document.images["preview"].style.display = "";
document.images["preview"].src="document.frm.file.value;
}
</script>
</HEAD>
<BODY>
<form name="frm" enctype="multipart/form-data">
<input type="file" name="file"><br>
<input type="button" value="미리보기" onclick="img_preview()">
</form>
<img name="preview" style="display:none">
</BODY>
</HTML>
댓글목록
등록된 댓글이 없습니다.