묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
클릭하지 않고 시작할때 바로 뜨게 할 수 없나요?
2007.06.11 17:07
바탕이 회색 투명으로 변하고 가운데 새창이 뜨는 스크립트입니다.
<script>
function Content(div,s)
{
var a = eval("document.all.info_" + div);
if(s)
{
a.style.top = 0;
a.style.left = 0;
a.style.display = "";
tg.location.href = "http://www.jhansol.com/chat.php";
}
else
{
a.style.display = "none";
tg.location.href = "about:blank";
}
}
</script>
본문에 아래처럼 넣고 "안녕하세요" 를 클릭하면 잘~~~됩니다.
<a onclick="Content('1',true);" style='cursor:hand;'>안녕하세요.</a>
<div id="info_1" style="position:absolute; display:none; width:101.5%; height:100%;">
<div style='position:absolute; top:30%; left:50%; margin-top:-15em; margin-left:-15em; background-color:#ffffff;'>
<iframe name="tg" src='#' frameborder='0' width='+ '+ '400' height='500' scrolling='no'></iframe>
</div>
<table cellpadding='0' cellspacing='0' border='0' style='width:100%; height:100%; background-color:#000000; filter:Alpha(opacity=30); opacity:0.3; -moz-opacity:0.3;' onclick="Content('1',false);">
<tr>
<td></td>
</tr>
</table>
</div>
index화일이 실행될때 클릭없이 같이 실행되게하는 법을 알고싶습니다.
<script>
function Content(div,s)
{
var a = eval("document.all.info_" + div);
if(s)
{
a.style.top = 0;
a.style.left = 0;
a.style.display = "";
tg.location.href = "http://www.jhansol.com/chat.php";
}
else
{
a.style.display = "none";
tg.location.href = "about:blank";
}
}
</script>
본문에 아래처럼 넣고 "안녕하세요" 를 클릭하면 잘~~~됩니다.
<a onclick="Content('1',true);" style='cursor:hand;'>안녕하세요.</a>
<div id="info_1" style="position:absolute; display:none; width:101.5%; height:100%;">
<div style='position:absolute; top:30%; left:50%; margin-top:-15em; margin-left:-15em; background-color:#ffffff;'>
<iframe name="tg" src='#' frameborder='0' width='+ '+ '400' height='500' scrolling='no'></iframe>
</div>
<table cellpadding='0' cellspacing='0' border='0' style='width:100%; height:100%; background-color:#000000; filter:Alpha(opacity=30); opacity:0.3; -moz-opacity:0.3;' onclick="Content('1',false);">
<tr>
<td></td>
</tr>
</table>
</div>
index화일이 실행될때 클릭없이 같이 실행되게하는 법을 알고싶습니다.
댓글 2
-
최은귀
2007.06.11 19:02
-
조민
2007.06.12 16:49
참고해 보세요.
<script language="javascript">
function Content(div,s)
{
var a = eval("document.all.info_" + div);
if(s)
{
a.style.top = 0;
a.style.left = 0;
a.style.display = "";
tg.location.href = "http://www.jhansol.com/chat.php";
}
else
{
a.style.display = "none";
tg.location.href = "about:blank";
}
}
</script>
<body onload="Content('1',true);">
<div id="info_1" style="position:absolute; display:none; width:101.5%; height:100%;">
<div style='position:absolute; top:30%; left:50%; margin-top:-15em; margin-left:-15em; background-color:#ffffff;'>
<iframe name="tg" src='#' frameborder='0' width='400' height='500' scrolling='no'></iframe>
</div>
<table cellpadding='0' cellspacing='0' border='0' style='width:100%; height:100%; background-color:#000000; filter:Alpha(opacity=30); opacity:0.3; -moz-opacity:0.3;' onclick="Content('+ '+ '1',false);">
<tr>
<td></td>
</tr>
</table>
</div>
</body>
해보진 않아서.. 나중에 해 보고 다시 답변 달께요..