½ÃÀÛÆäÀÌÁö·Î Áñ°Üã±âÃß°¡
·Î±×ÀÎ
ȸ¿ø°¡ÀÔ l Ã⼮üũ l ¸¶ÀÌÆäÀÌÁö l CGIMALL
happycgi
ÀÚ·á½Ç »çÀÌÆ®µî·Ï ·©Å·100 ÇÁ·Î±×·¥¸®ºä °ü¸®ÀÚÃßõÀÚ·á Ãʺ¸°¡À̵å
Ä¿¹Â´ÏƼ
Àüü ÆîÃ帱â
Äü¸Þ´º¸µÅ© jquery , CSS , PHP , Javascript , ¹«·áÆùÆ® , ASP
»ó¼¼°Ë»ö
Ȩ > JAVASCRIPT > javascript ¼Ò½ºÃ¢°í > ½Ã°£,³¯Â¥ > 13ÀÏÀÇ ±Ý¿äÀÏÀ» °Ë»öÇÏ´Â ½ºÅ©¸³Æ® »ó¼¼Á¤º¸
»çÀÌÆ®µî·Ï
Ŭ¶ó¿ìµåű×
Javascript
PHP
html
ASP
mysql
CSS
Mobile
image
jquery
slide
�޴�
¸Þ´º
2023
ÇöÀçÁ¢¼ÓÀÚ ¸í »õ·Î°íħ
13ÀÏÀÇ ±Ý¿äÀÏÀ» °Ë»öÇÏ´Â ½ºÅ©¸³Æ®
¼Ò½ºÅë°èÁ¤º¸ ¿À·ù½Å°í ¹× ¹®ÀÇ
ÇØÇÇÆÀ
³×ƼÁð
Æ®À§ÅÍ·Î º¸³»±â ÆäÀ̽ººÏÀ¸·Î º¸³»±â
¼Ò½ººÐ·ù ½Ã°£,³¯Â¥
´Ù¿î·Îµå Ƚ¼ö 841 ȸ
°£´Ü¼³¸í 13ÀÏÀÇ ±Ý¿äÀÏÀ» ³âµµº°·Î °Ë»öÇÕ´Ï´Ù. ÀÚ¹Ù½ºÅ©¸³Æ®¸¦ ¼öÁ¤Çϸé 13ÀÏÀÇ ±Ý¿äÀÏ »Ó¸¸ ¾Æ´Ï¶ó ¾î¶°ÇÑ ³¯Â¥ÀÇ ¿äÀϱîÁö °Ë»öÇÒ¼ö ÀÖ½À´Ï´Ù.
Æò°¡Çϱâ ÈǸ¢ÇÔ ¸Å¿ìÁÁÀ½ ÁÁÀ½ ±¦ÂúÀ½ º¸Åë º°·Î
ȨÆäÀÌÁö¹Ù·Î°¡±â ¼Ò½º´Ù¿î·Îµå µ¥¸ð ¹Ì¸®º¸±â ½ºÅ©·¦Çϱâ

º» ¿¹Á¦ÀÇ ÀÚ¹Ù½ºÅ©¸³Æ®ÀÔ´Ï´Ù.

<html>
<head>
    <title>http://www.happycgi.com</title>
</HEAD>

<BODY>

<script>
<!--
var new_Date=new Date()
var DOM=new_Date.getDate()
var Year=new_Date.getFullYear()
var LongMonth = new Array("01¿ù","02¿ù","03¿ù","04¿ù","05¿ù","06¿ù","07¿ù","08¿ù","09¿ù","10¿ù","11¿ù","12¿ù")
var LongDay = new Array("ÀÏ","¿ù","È­","¼ö","¸ñ","±Ý","Åä")
var setTimer = 5000;

function find13th() {
    var Start = startyear.value
    var End = endyear.value
    var TooMuch = End-Start
    if (confirm("Caution, this may result in an extremely large result, and may take a long time to display those results."))
        if (End < Start)                        //if end<start alert user, else
            alert("Sorry, the ending year must be greater than or equal to the beginning year..")
        else {                                    //allow dates and continue
            var BasicHTML = "<B>°Ë»ö°á°ú!!</B>"
            for (YearTest=Start;YearTest<=End;YearTest++) {
                if (MonthSelect.value==20) {
                    for (MonthTest=0;MonthTest<=11;MonthTest++) {
                        var TestDate = new Date(YearTest,MonthTest,13)
                        if (TestDate.getDay()==5)
//                        BasicHTML = BasicHTML+"<br>"+LongMonth[MonthTest]+" "+TestDate.getDate()+", "+YearTest
                        BasicHTML = BasicHTML+"<br>"+YearTest+"³â, "+LongMonth[MonthTest]+" "+TestDate.getDate()+"ÀÏ"
                    }
                }
                else {
                    var TestDate = new Date(YearTest,MonthSelect.value,13)
                    if (TestDate.getDay()==5)
                    BasicHTML = BasicHTML+"<br>"+YearTest+"³â, "+LongMonth[MonthSelect.value]+" "+TestDate.getDate()+"ÀÏ"
                }
            }
            document.all["InternalDiv"].innerHTML = BasicHTML;   
        }
    else {
        alert("Please make the years closer together..")
    }
}

function clearResults() {
    var BasicHTML = "<B>°Ë»ö°á°ú!!</B>"
    document.all["InternalDiv"].innerHTML = BasicHTML;
}
//-->
</script>

<B>°Ë»ö±â°£ :</B><br>
<B>½ÃÀ۳⵵ :</B> <input type="Text" size="5" maxlength="4" name="startyear" value="2005"> ~
<B>¸¶Áö¸·³âµµ : </b> <input type="Text" size="5" maxlength="4" name="endyear" value="2010">

 

<select NAME="MonthSelect" size="1">
    <option VALUE ="20" SELECTED>ƯÁ¤ ¿ù(êÅ)À» ÁöÁ¤</option>
    <option value="0">1¿ù</option>
    <option value="1">2¿ù</option>
    <option value="2">3¿ù</option>
    <option value="3">4¿ù</option>
    <option value="4">5¿ù</option>
    <option value="5">6¿ù</option>
    <option value="6">7¿ù</option>
    <option value="7">8¿ù</option>
    <option value="8">9¿ù</option>
    <option value="9">10¿ù</option>
    <option value="10">11¿ù</option>
    <option value="11">12¿ù</option>
</select>

<br><br>
<input type="Button" value="°Ë»ö" onmouseup="find13th()"><input type="Button" value="RESET" onmouseup="clearResults()">

<p>
<table cellpadding=8 bgcolor=999999 cellspacing=1 width=180>
<td bgcolor=white><layer id="Layer1"><div id="InternalDiv"></div></layer></td>
</table>


³×ƼÁð ÀÇ°ß   ÀÌ¿ëÇϽŠÀÚ·áÀÇ Èı⸦ ÀÚÀ¯·Ó°Ô ÀÛ¼ºÇϼ¼¿ä. (»ó¾÷ÀûÀÎ ±¤°í ¹× µµ¹è¼º ±Û µîÀº »çÀüÅ뺸¾øÀÌ »èÁ¦µÉ ¼ö ÀÖ½À´Ï´Ù.)
³»¿ë ¾ÆÀ̵ð ÀÇ°ß³²±â±â
µî·ÏµÈ ÀÇ°ßÀÌ ¾ø½À´Ï´Ù.
1
À̸§
³»¿ë
:³×¸Â¾Æ¿ä: :È­³ª´Â±º¿ä: :Àá¿Í: :¿ì¿ïÇØ: :À̰ǾƳÄ: :¿ÕÇÏÇÏ: ¿Õ¿ôÀ½~ ³î·¥~
Æò°¡Çϱâ ÈǸ¢ÇÔ ¸Å¿ìÁÁÀ½ ÁÁÀ½ ±¦ÂúÀ½ º¸Åë º°·Î
µµ¹è¹æÁöÅ°
 45151041 º¸ÀÌ´Â µµ¹è¹æÁöÅ°¸¦ ÀÔ·ÂÇϼ¼¿ä.