새창을 띄울 때 전체화면 크기로 내용만 보여주고 싶을 때가 있다. 그럴 때 아래와 같이 쓰면 된다.



<html>

<head>

<basefont size="2">

<script language="Javascript">

<!--//

function showscreen()

{

window.open(

"http://user.chollian.net/~thermidor/thermidor.htm", 

"home",

"top=0,left=0,width="

+ (screen.availWidth - 10) + ",height=" + (screen.availHeight - 30) + 

",toolbar=no,status=0,resizable=0,scrollbars=yes"

);

}

//-->

</script>

</head>

<body>

<input type=button value="123" onClick="showscreen();">

</body>

</html>

'Tech: > HTML·DHTML' 카테고리의 다른 글

폼의 자동완성 기능 막기  (0) 2008.06.26
Border Style 예제  (0) 2008.06.26
움직이는 타이틀(제목 표시줄) 표현...  (0) 2008.06.26
META 태그 설명  (0) 2008.06.26
팝업(context)메뉴 흉내내기  (0) 2008.06.26


Posted by 떼르미
,


자바스크립트를 허용해주세요!
Please Enable JavaScript![ Enable JavaScript ]