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


³¯Â¥ ¼±Åà »õâ¿ë ½ºÅ©¸³Æ® + HTML
17³â Àü
<html><head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>³¯Â¥ ¼±ÅÃ</title>
<style type="text/css">
body { margin:4px; }
body,input.button { background-color:#D4D0C8; color:black; }
body,th,td,input,select { font-family:Gulim; font-size:12px; }
input.spinbtn { font-size:9px; }
table { background-color:white; border:2px inset white; cursor:default; }
table tr { height:18px; }
table th { background-color:#808080; color:#D4D0C8; font-weight:normal; }
table td { text-align:center; }
table td.selected { background-color:#0A246A; color:white; }
</style>
<script language="Javascript">
var oDate = new Date();
var dateCells = new Array();
var curDate;
var curCell;

function padZeros(num, size) {
  var str = num.toString();
  var numZeros = size - str.length;
  for (var i = 0; i < numZeros; i++)
    str = "0" + str;
  return str;
}

function showCal() {
  var form = document.dateForm;
  var year = oDate.getYear();
  var month = oDate.getMonth();
  var date = oDate.getDate();
  var i, dval, oCell;

  if (!curDate) curDate = date;

  var thisMonth = new Date(oDate);
  thisMonth.setDate(1);
  var dayof1 = thisMonth.getDay();

  var nextMonth = new Date(oDate);
  nextMonth.setDate(1); nextMonth.setMonth(month + 1); nextMonth.setDate(0);
  var numdays = nextMonth.getDate();

  form.year.value = oDate.getYear();
  form.month.selectedIndex = oDate.getMonth();

  // ¼¿µé ÃʱâÈ­
  for (i=0; i<42; i++) dateCells[i].innerText = "";
  if (curCell) curCell.className = "";

  // ¼¿ °ª Àç¹èÄ¡
  if (curDate > numdays) curDate = numdays;
  for (i=0; i<numdays; i++) {
    dval = i + 1; oCell = dateCells[i + dayof1];
    oCell.innerText = dval;
    if (dval == curDate) (curCell = oCell).className = "selected";
  }
}

function nextMonth() { oDate.setMonth(oDate.getMonth() + 1); showCal(); }
function prevMonth() { oDate.setMonth(oDate.getMonth() - 1); showCal(); }

function cellOnClick() {
  if (this.innerText=="") return;
  curDate = parseInt(this.innerText);
  curCell.className = "";
  (curCell = this).className = "selected";
}

function updateYear(obj) {
  var year = parseInt(obj.value);
  if (isNaN(year)) return false;
  var testDate = new Date();
  testDate.setYear(year);
  if (testDate.getYear() != year) return false;
  oDate.setYear(year);
  showCal();
  return true;
}

function updateMonth(obj) {
  var month = obj.selectedIndex;
  oDate.setMonth(month);
  showCal();
}

function getDateStr() {
  var form = document.dateForm;
  return form.year.value + "-" +
    form.month[form.month.selectedIndex].value + "-" +
    padZeros(curDate,2);
}

function init() {
  var row, cell;
  var tbody = calTable.childNodes[0];
  calTable.appendChild(tbody);
  for (var i=0; i<6; i++) {
    row = document.createElement("TR");
    tbody.appendChild(row);
    for (var j=0; j<7; j++) {
      cell = document.createElement("TD");
      row.appendChild(cell);
      dateCells[i*7+j] = cell;
      cell.onclick = cellOnClick;
    }
  }
  showCal();
}
</script>
<body onLoad="init()">

<form name="dateForm" style="text-align:center" onSubmit="return false">
<input type="button" class="button spinbtn" value=" ¢¸ " onmouseup="prevMonth()">
 
<input type="text" name="year" size="4" maxlength="4" onChange="return updateYear(this)"
  style="width:50px;text-align:center;ime-mode:disabled">
<select name="month" style="width:60px" onChange="updateMonth(this)">
  <option value="01">1¿ù</option><option value="02">2¿ù</option><option value="03">3¿ù</option>
  <option value="04">4¿ù</option><option value="05">5¿ù</option><option value="06">6¿ù</option>
  <option value="07">7¿ù</option><option value="08">8¿ù</option><option value="09">9¿ù</option>
  <option value="10">10¿ù</option><option value="11">11¿ù</option><option value="12">12¿ù</option>
</select>
 
<input type="button" class="button spinbtn" value=" ¢º " onmouseup="nextMonth()">

<table id="calTable" cellspacing="0" cellpadding="2"
  style="margin:4px;table-layout:fixed;border-collapse:collapse">
  <tr>
    <th width="30">ÀÏ</th><th width="30">¿ù</th><th width="30">È­</th>
    <th width="30">¼ö</th><th width="30">¸ñ</th><th width="30">±Ý</th>
    <th width="30">Åä</th>
  </tr>
</table>

<input type="button" value="   È®ÀΠ  " onClick="alert(getDateStr())">
<input type="button" value="   Ãë¼Ò   " onClick="self.close()">
</form>

</body></html>
ÃßõÃßõ : 547 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
2,891
ÀÔ·Â Çʵ忡¼­ ƯÁ¤´Ü¾î(¿¹:#err)°¡ Æ÷ÇԵǾúÀ» ¶§ ½Ç½Ã°£ °¨Áö ¹× °æ°íâ ¶ç¿ì±â
2,890
µ¥ÀÌÅͺ£À̽º ÃÖÀûÈ­¿Í Äõ¸® È¿À²¼ºÀ» ³ôÀÌ °Ë»ö ¼º´ÉÀ» °³¼±ÇÏ´Â ¹æ¹ý
2,889
°£´ÜÇÑ °Ô½ÃÆÇ ¸¸µé±â
2,888
PHPÀÇ php.ini ÆÄÀÏ¿¡¼­ ¼³Á¤ÇÒ ¼ö ÀÖ´Â ÁÖ¿ä Ç׸ñµéÀ» Ä«Å×°í¸®º°·Î Á¤¸®
2,887
À¯Æ©ºê µ¿¿µ»óÀÇ ½æ³×ÀÏ À̹ÌÁö¸¦ üũÇÏ¿© À¯È¿ÇÑ ¿µ»óÀ̾ƴҶ§ ¿¬°áµÈ üũ¹Ú½º¸¦ ÀÚµ¿À¸·Î üũ
2,886
À̹ÌÁö URLÀÌ À¯È¿ÇÏÁö ¾ÊÀ» ¶§, ÇØ´ç À̹ÌÁö¿Í ¿¬°áµÈ üũ¹Ú½º¸¦ ÀÚµ¿À¸·Î üũ
2,885
HTTPS·Î Á¢¼ÓÇÑ »ç¿ëÀÚ¸¦ °­Á¦·Î HTTP·Î ¸®µð·º¼Ç ÇÏ·Á¸é
2,884
PHP¿¡¼­ MP3 ÆÄÀÏÀ» Á÷Á¢ ÀÐ°í ½ºÆ®¸®¹Ö Çϱâ
2,883
ÇöÀç ÆäÀÌÁö°¡ location.reload()¿¡ ÀÇÇØ »õ·Î°íħµÇ¾ú´ÂÁö
2,882
ÅؽºÆ® ÆÄÀÏÀ» Àаí, °¢ ÁÙÀÇ ³¡¿¡¼­ 6±ÛÀÚ¸¦ »èÁ¦ÇÑ ÈÄ, °á°ú¸¦ »õ·Î¿î ÆÄÀÏ¿¡ ÀúÀåÇÕ´Ï´Ù.
2,881
cURLÀ» »ç¿ëÇÏ¿© ¸®´ÙÀÌ·ºÆ®¸¦ µû¶ó°¡ ÃÖÁ¾ URL °¡Á®¿À±â
2,880
[PHP] $_SERVER ȯ°æº¯¼ö
2,879
10Áø¼ö <-> 16Áø¼ö º¯È¯±â PHP¼Ò½º
2,878
ÅؽºÆ®¿¡ Á÷Á¢ ±×¶óµ¥ÀÌ¼Ç »ö»óÀ» Àû¿ëÇÏ·Á¸é?
2,877
CSS¸¦ »ç¿ëÇÏ¿© ¿ä¼ÒÀÇ ³»¿ë¹°¿¡ µû¶ó width¸¦ Á¶Á¤ÇÏ´Â ¹æ¹ý
2,876
À¥¼­¹ö ip È®ÀÎ
2,875
À¥È£½ºÆÃÀÇ Àý´ë°æ·Î¸¦ È®ÀÎ
2,874
input ÀÔ·Â ÇÊµå ¾ÕµÚ °ø¹é ½Ç½Ã°£ Á¦°Å
2,873
Placeholder Æ÷Ä¿½º½Ã °¨Ãß±â
2,872
MySQL Áߺ¹µÈ µ¥ÀÌÅ͸¦ »èÁ¦
2,871
MySQL Áߺ¹ µ¥ÀÌÅÍ È®ÀÎ
2,870
sessionStorage.getItem ¿Í sessionStorage.setItem
2,869
Á¦ÀÌÄõ¸® ·£´ýÀ¸·Î ¹è°æ»ö º¯°æ
2,868
preg match¿¡ °üÇÑ Á¤±Ô½Ä
2,867
Stream an audio file with MediaPlayer ¿Àµð¿À ÆÄÀÏ ½ºÆ®¸®¹Ö Çϱâ
2,866
Audio Streaming PHP Code
2,865
PHP $ SERVER ȯ°æ º¯¼ö Á¤¸®
2,864
Vimeo (ºñ¸Þ¿À) API ¸¦ »ç¿ëÇÏ¿© Ç÷¹À̾î ÄÁÆ®·ÑÇϱâ
2,863
iframe »ç¿ë½Ã ÇÏ´Ü¿¡ ¹ß»ýÇÏ´Â °ø¹é Á¦°Å¹æ¹ý
2,862
¾ÆÀÌÇÁ·¹ÀÓ(iframe) Àüüȭ¸é °¡´ÉÇÏ°Ô Çϱâ
¸ñ·Ï
¹ÂÁ÷Æ®·ÎÆ® ºÎ»ê±¤¿ª½Ã ºÎ»êÁø±¸ °¡¾ßµ¿ ¤Ó °³ÀÎÁ¤º¸Ãë±Þ¹æħ
Copyright ¨Ï musictrot All rights reserved.