///////////// 미리보기창 버튼
<input type="button" value="미리보기" onclick="openPreview(frm.content.value,'','')">
/////////// 부모창 소스
// 미리보기 - 객체
function clsPreview(val) {
this.m_val = val;
this.openPreview = openPreview;
this.openPreview_SetData = openPreview_SetData;
}
// 미리보기 - 창띄우기
function openPreview(val, pWidth, pHeight) {
clsPreview(val);
if (pWidth == "") { pWidth = "750";}
if (pHeight == "") { pHeight = "600";}
openwin("/common/popupPreview.asp","windowPreview",pWidth,pHeight,"yes");
}
// 미리보기 - 창에 데이타 넘기기
function openPreview_SetData(opObj) {
this.m_val = this.m_val.replace(/n/gi,"<br>");
opObj.innerHTML = this.m_val
}
////// 자식창 소스
<html>
<head>
<title>미리보기</title>
<script language="javascript" src="/_script/common.js"></script>
<script language="javascript">
function window.onload() {
opener.openPreview_SetData(document.all.i_preview);
}
</script>
<body>
<div id="i_preview">
</div>
</body>
</html>
<input type="button" value="미리보기" onclick="openPreview(frm.content.value,'','')">
/////////// 부모창 소스
// 미리보기 - 객체
function clsPreview(val) {
this.m_val = val;
this.openPreview = openPreview;
this.openPreview_SetData = openPreview_SetData;
}
// 미리보기 - 창띄우기
function openPreview(val, pWidth, pHeight) {
clsPreview(val);
if (pWidth == "") { pWidth = "750";}
if (pHeight == "") { pHeight = "600";}
openwin("/common/popupPreview.asp","windowPreview",pWidth,pHeight,"yes");
}
// 미리보기 - 창에 데이타 넘기기
function openPreview_SetData(opObj) {
this.m_val = this.m_val.replace(/n/gi,"<br>");
opObj.innerHTML = this.m_val
}
////// 자식창 소스
<html>
<head>
<title>미리보기</title>
<script language="javascript" src="/_script/common.js"></script>
<script language="javascript">
function window.onload() {
opener.openPreview_SetData(document.all.i_preview);
}
</script>
<body>
<div id="i_preview">
</div>
</body>
</html>
'HTML & Script' 카테고리의 다른 글
셀렉트 박스의 값들을 왼쪽 or 오른쪽 이동 시키는 스크립트 (1) | 2007.05.02 |
---|---|
textarea 에 있는 내용을 div 태그로 바꿔서 보여주는 함수 (0) | 2007.05.02 |
TEXTAREA에 탭(Tab) 기능 넣기 (0) | 2007.05.02 |
스크립트(Script) 코드 인코드(Encode)/디코드(Decode) 예제 (0) | 2007.05.02 |
체크박스(Checkbox)에서 체크 안된값도 넘겨주는 함수 (0) | 2007.05.02 |