묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
새창열기 관련 질문합니다.
2005.01.11 18:33
홈페이지를 일정한 크기로 띄우고 싶습니다.
홈페이지 주소를 접속하면 자동으로 새창으로 메인을 띄우고,
주소창은 사라지게 하고 싶은데..
어떻게 하면 되나요?
질문이 허술해서 죄송합니다. ㅠ.ㅜ;
새창띄우는 것 + 자동으로 닫히는 것 조합으로
만들어봤는데...
컴퓨터에서는 되는데 웹상으로는 안됩니다.
뭐가 잘못된건지 잘 모르겠습니다.
<html>
<head>
<script language="JavaScript">
<!--
function openWindow(URL,winName,features) {
window.open(URL,winName,features);
}
//-->
</script>
</head>
<body onLoad="openWindow('index.htm', '', 'width=1021,height=638')">
<script>setTimeout("self.close()",2000);</script>
</body>
</html>
홈페이지 주소를 접속하면 자동으로 새창으로 메인을 띄우고,
주소창은 사라지게 하고 싶은데..
어떻게 하면 되나요?
질문이 허술해서 죄송합니다. ㅠ.ㅜ;
새창띄우는 것 + 자동으로 닫히는 것 조합으로
만들어봤는데...
컴퓨터에서는 되는데 웹상으로는 안됩니다.
뭐가 잘못된건지 잘 모르겠습니다.
<html>
<head>
<script language="JavaScript">
<!--
function openWindow(URL,winName,features) {
window.open(URL,winName,features);
}
//-->
</script>
</head>
<body onLoad="openWindow('index.htm', '', 'width=1021,height=638')">
<script>setTimeout("self.close()",2000);</script>
</body>
</html>