모달 다이얼로그박스(modal dialog box)
대화상자의 도움말을 생각해보면 이해가 쉽습니다. 메모장을 열어 도움말을 클릭해보면 이전 다이얼로그와 전환이 되질 않습니다.
이런식으로 다이얼로그가 종료되기 전까지는 호출한 곳으로 전환이 안되는 것이 모달 다이얼로그입니다.
[예제]
<html>
<head>
<title> New Document </title>
<script language="JavaScript">
<!--
function pop_up(){
window.showModalDialog('modal_test.html', 'helpwin', 'dialogWidth:300px;dialogHeight:200px; center:yes; help:no; status:no; scroll:yes; resizable:yes');
}
//-->
</script>
</head>
<body>
<input type="button" value="팝업" onClick="pop_up();">
</body>
</html>
[출처] : http://www.jspnet.com
'프로그램 > Html & Js & Css' 카테고리의 다른 글
fieldset tag (0) | 2009.03.30 |
---|---|
테이블 테두리 얇게 하기 (0) | 2009.03.30 |
즐겨찾기추가 소스 (0) | 2009.03.30 |
프레임으로 나뉜 웹페이지 새로고침 (0) | 2009.03.30 |
[펌] - 자바스크립트 디버깅 (0) | 2009.03.30 |