ȸ¿ø°¡ÀԡžÆÀ̵ð/ºñ¹øã±â
ȨÀ¸·Î


window.open ¼Ó¼º »ç¿ë ¹æ¹ý
16³â Àü
<script type="text/javascript">

/*
window.open(url:String, name:String, properties:String)
open ÇÔ¼ö´Â ¹Ýµå½Ã 3°³ÀÇ ¸Å°³º¯¼ö°¡ ÀÖ°í, ¸Å°³º¯¼ö ¼ø¼­´Â ÁöÄÑ¾ß ÇÔ.
nameÀº Æ˾÷âÀÇ À̸§, ÁÖ·Î ÇÁ·¹ÀÓ ¹®¼­ÀÇ TargetÀ¸·Î »ç¿ë
nameÀº »ç¿ëÇÏÁö ¾ÊÀ¸·Á¸é " " ¸¸ Ç¥½ÃÇØÁÝ´Ï´Ù. ¹Ýµå½Ã Ç¥½ÃÇØ¾ß ÇÔ.
*/


function win() {
window.open("http://eschyles.mireene.com/", "", "");  //¼Ó¼º ÁöÁ¤ÇÏÁö ¾ÊÀº ±âº»Ã¢
}


function menu_win() {
window.open("http://eschyles.mireene.com/", "", "menubar=1");  //¸Þ´º¹Ù ¾ø´Â Æ˾÷
}


function full_win() {
window.open("http://eschyles.mireene.com/", "", "fullscreen"); //Ç®½ºÅ©¸° ¹æ½Ä
}

function channel_win() {
window.open("http://eschyles.mireene.com/", "", "channelmode"); //ä³Î¸ðµå

}


function status_win() { // »óÅÂÇ¥½Ã¹Ù ÀÖ´Â Æ˾÷
window.open("http://eschyles.mireene.com/", "", "width=400, height=300, status=1");
}


function popup_win1() { //Å©±â width400 height300 Æ˾÷â
window.open("http://eschyles.mireene.com/", "", "width=400, height=300");
}


function popup_win2() { //À§Ä¡ left=500, top=400 ¿¡¼­ ¿­¸®´Â Æ˾÷â
window.open("http://eschyles.mireene.com/", "", "width=400, height=300, left=500, top=400");
}


function popup_win3() { //½ºÅ©·Ñ¹Ù ÀÖ´Â Æ˾÷
window.open("http://eschyles.mireene.com/", "", "width=400, height=300,  scrollbars=1");
}


function popup_win4() { //ÁÖ¼ÒÇ¥½ÃÁÙ ÀÖ´Â Æ˾÷
window.open("http://eschyles.mireene.com/", "", "width=400, height=300, left=100, location=1");
}
</script>


<body>
<input type="button" value="¼Ó¼º ÁöÁ¤ÇÏÁö ¾ÊÀº ±âº» â" onclick="win()">

<input type="button" value="¸Þ´º¹Ù ¾ø´Â Æ˾÷" onclick="menu_win()">

<input type="button" value="Ç®½ºÅ©¸° Æ˾÷" onclick="full_win()">

<input type="button" value="ä³Î¸ðµå Æ˾÷" onclick="channel_win()">

<input type="button" value="»óÅÂÇ¥½Ã¹Ù ÀÖ´Â Æ˾÷" onclick="status_win()">

<input type="button" value="width400 height300 Æ˾÷â" onclick="popup_win1()">

<input type="button" value="À§Ä¡ left=500, top=400 Æ˾÷â" onclick="popup_win2()">

<input type="button" value="½ºÅ©·Ñ¹Ù ÀÖ´Â Æ˾÷" onclick="popup_win3()">

<input type="button" value="ÁÖ¼Ò ÀԷ ǥ½ÃÁÙ ÀÖ´Â Æ˾÷" onclick="popup_win4()">

</body>
ÃßõÃßõ : 241 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
845
¹«ÇÑ À̹ÌÁö ¾÷·Îµå
844
ÁøÇà»óŹÙ(ProgressBar)
843
SELECT BOX·Î ÇØ´ç ÁÖ¼Ò·Î À̵¿Çϱâ2
842
ÁøÇà»óŹÙ(ProgressBar)2
841
Àμ⠾ȵǴ ÆäÀÌÁö ¸¸µé±â
840
½ºÅ©·Ñ µÉ ¶§¿¡¸¸ »ö»óÀÌ º¯ÇÏ´Â ½ºÅ©·Ñ¹Ù
839
½ºÅ©·Ñ¹Ù »ö»ó ÁöÁ¤ ¸¶¹ý»ç
838
³¯Â¥ ¼±Åà »õâ¿ë ½ºÅ©¸³Æ® + HTML
837
ÇѲ¨¹ø¿¡ 5°¡Áö ½Ã°£ Ç¥½Ã
836
¾ÆÀÌÇÁ·¹ÀÓ ³ôÀÌ ÀÚµ¿À¸·Î ´Ã¾î³ª´Â ÀÚ¹Ù ½ºÅ©¸³Æ®
window.open ¼Ó¼º »ç¿ë ¹æ¹ý
834
PHP Ãʺ¸Å»ÃâÀ» À§ÇÑ À¯¿ëÇÑ ÇÔ¼ö¸ðÀ½
833
Ç¥¾ÈÀÇ ·¹ÀÌ¾î °íÁ¤ÁÂÇ¥ Ç®±â
832
·¹À̾ ½ºÅ©·Ñ¹Ù ´Þ±â
831
ºê¶ó¿ìÀú üũÇÔ¼ö
830
OS üũÇÔ¼ö
829
go Top, go Bottom ¹öÆ° ¸¸µé±â
828
prototype String ÇÔ¼ö
827
/var/log/secure ·Î±×¸¦ ÀÌ¿ëÇÑ IP Deny ÀÚµ¿ µî·Ï ½ºÅ©¸³Æ®
826
Ç÷¡½¬¸¦ ÀÌ¿ëÇÑ °Ô½ÃÆÇ ÀÚµ¿µî·Ï ¹æÁö ¾Ë°í¸®Áò
825
ÇÔ¼ö³ª Ŭ·¡½º Áߺ¹¼±¾ð È®ÀÎ ÇÔ¼ö
824
fsockopenÀÌ¿ëÇØ fileÇÔ¼ö ó·³ »ç¿ëÇϱâ
823
»çÀÌÁî°¡ Å«À̹ÌÁö À¥ÆäÀÌÁö Ãâ·Â½Ã ÀÚµ¿À¸·Î »çÀÌÁî ÁÙÀ̱â...
822
¹Ù¿î½ºµÇ¸é¼­ µû¶ó´Ù´Ï´Â Floating Menu
821
Çѱ۱âÁØÀ¸·Î ¹®ÀÚ ÀÚ¸£±â ÇÔ¼ö
820
¹öÆ°À» Ŭ¸¯ÇÏ¸é ³ëÆ®Æе带 ½ÇÇàÇÕ´Ï´Ù..
819
¾Ë¶÷½Ã°è (¼³Á¤µÈ ½Ã°£ÀÌ µÇ¸é °æ°íâÀ¸·Î ¾Ë·ÁÁÝ´Ï´Ù.)
818
ÀÚ¹Ù½ºÅ©¸³Æ® ij½¬ÆÄÀÏ »ý¼º¾ÈÇϱâ
817
XP Servicepack2, IE7¿¡¼­µµ Æ˾÷â »çÀÌÁî ÀÌ»Ú°Ô Á¶ÀýÇϱâ
816
¼Ò½ºº¸±â ÇÒ °æ¿ì ¼Ò½ºº¸±â âÀÌ ¶ßÁö ¾Ê°ÔÇϱâ
¸ñ·Ï
¹ÂÁ÷Æ®·ÎÆ® ºÎ»ê±¤¿ª½Ã ºÎ»êÁø±¸ °¡¾ßµ¿ ¤Ó °³ÀÎÁ¤º¸Ãë±Þ¹æħ
Copyright ¨Ï musictrot All rights reserved.