Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

팝업창을 여러개 띄워야 하는데...한개이상이 안됩니다.

1,736 views
Skip to first unread message

LuisAhn

unread,
Sep 16, 2002, 9:21:16 PM9/16/02
to
우선 미안합니다.
javascript질문을 올려서,,,
제가 쪽지 서비스를 구현중인데요.
쪽지가 도착했을때 팝업창을 띄우게 했습니다.(애플릿으로부터...)
그런데 이미 쪽지창이 하나 떠있는 경우에 다른 사람이 쪽지를 또다시 보내오면
새로운 팝업창이 안뜨고
기존에 열려있는 팝업창이 새로운 팝업창으로 바뀝니다.
예를 들어,,,
세이클럽같은 경우는,
새로운 메세지가 올때마다 각각의 팝업창이 뜨잖아요?
저는 그게 안됩니다.
그것때문에 현재 큰 문제에 놓여있습니다.
부디 좀 도와주십시오.


<참고로 저는 팝업창을 이렇게 열었습니다> (java스크립트부분)
var add = "/message/read_msg.asp";
window.open( add, 'Get','location= no,directories=no,resizable=no, \
scrollbars=no, status=no, toolbar=no, menubar=no, left=400, top=300,
width=250,height=200,');


--------------------
From : LuisAhn
--------------------


Microsoft Developer Support

unread,
Sep 16, 2002, 9:28:40 PM9/16/02
to

안녕 하십니까?
마이크로 소프트 기술 지원부 입니다.
window.open 을 할경우 두번째 pram 이 새로운 창의 이름 같은 것 입니다.
이 이름이 달라야만이 새로운 윈도우가 뜨는 것 입니다.

다음 소스를 참고 하시기 바랍니다.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


<!--#include file="../INC/Head.inc"-->

<script language = "vbscript">
sub SelView_onchange
Dim a
a = SelView.value

window.open a & ".asp" , a ,
"menubar=no,width=300,height=100,resizable=no"
end sub
</script>

<BODY>
<table width="600" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="65">&nbsp;</td>
<td width="163">&nbsp;</td>
<td width="164">&nbsp;</td>
<td width="208">&nbsp;</td>
</tr>
<tr>
<td width="65">&nbsp;</td>
<td width="163">&nbsp;</td>
<td width="164">&nbsp;</td>
<td width="208">&nbsp;</td>
</tr>
<tr>
<td width="65">&nbsp;</td>
<td width="163">
<select name="SelView">
<option value="1111" selected>-- SELECT --</option>
<option value="View_01">1호 보기</option>
<option value="View_02">2호 보기</option>
<option value="View_03">3호 보기</option>
</select>
</td>
<td width="164">
<input type="button" name="Button" value="Button">
</td>
<td width="208">&nbsp;</td>
</tr>
<tr>
<td width="65">&nbsp;</td>
<td width="163">&nbsp;</td>
<td width="164">&nbsp;</td>
<td width="208">&nbsp;</td>
</tr>
<tr>
<td width="65">&nbsp;</td>
<td width="163">&nbsp;</td>
<td width="164">&nbsp;</td>
<td width="208">&nbsp;</td>
</tr>
</table>
<P>&nbsp;</P>

</BODY>
</HTML>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

감사 합니다.
"LuisAhn" <lui...@hanmir.com> wrote in message
news:O#yaDgeXCHA.1688@tkmsftngp10...

0 new messages