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

³¯Â¥ ¼±Åà »õâ¿ë ½ºÅ©¸³Æ® + HTML
16³â Àü
<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>
ÃßõÃßõ : 467 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
2,885
input ÀÔ·Â ÇÊµå ¾ÕµÚ °ø¹é ½Ç½Ã°£ Á¦°Å
2,884
Placeholder Æ÷Ä¿½º½Ã °¨Ãß±â
2,883
MySQL Áߺ¹µÈ µ¥ÀÌÅ͸¦ »èÁ¦
2,882
MySQL Áߺ¹ µ¥ÀÌÅÍ È®ÀÎ
2,881
sessionStorage.getItem ¿Í sessionStorage.setItem
2,880
Á¦ÀÌÄõ¸® ·£´ýÀ¸·Î ¹è°æ»ö º¯°æ
2,879
preg match¿¡ °üÇÑ Á¤±Ô½Ä
2,878
Stream an audio file with MediaPlayer ¿Àµð¿À ÆÄÀÏ ½ºÆ®¸®¹Ö Çϱâ
2,877
Audio Streaming PHP Code
2,876
PHP $ SERVER ȯ°æ º¯¼ö Á¤¸®
2,875
Vimeo (ºñ¸Þ¿À) API ¸¦ »ç¿ëÇÏ¿© Ç÷¹À̾î ÄÁÆ®·ÑÇϱâ
2,874
iframe »ç¿ë½Ã ÇÏ´Ü¿¡ ¹ß»ýÇÏ´Â °ø¹é Á¦°Å¹æ¹ý
2,873
¾ÆÀÌÇÁ·¹ÀÓ(iframe) Àüüȭ¸é °¡´ÉÇÏ°Ô Çϱâ
2,872
ºÎÆ®½ºÆ®·¦(bootstrapk)¿¡¼­ »ç¿ëÇÏ´Â class¸í Á¤¸®
2,871
ºÎÆ®½ºÆ®·¦ CSS
2,870
Å©·Ò¿¡¼­ ¸¶Áø Á¶Àý
2,869
PHP ÇöÀç ÆäÀÌÁöÀÇ µµ¸ÞÀθíÀ̳ª urlµîÀÇ Á¤º¸ ¾Ë¾Æ¿À±â
2,868
PHP preg match all()
2,867
PHP ·Î À¥ÆäÀÌÁö ±Ü¾î¿À±â ¸ðµç ¹æ¹ý ÃÑÁ¤¸®!
2,866
[PHP] ¿ø°ÝÁö ÆÄÀÏ ÁÖ¼Ò ³ëÃâ ¾ÈÇÏ°í curl·Î ´Ù¿î·Îµå ¹Þ±â
2,865
PHP ÇÔ¼ö Á¤¸®
2,864
¾ÆÀÌÇÁ·¹ÀÓ(iframe) ºñÀ² À¯ÁöÇϸ鼭 Å©±â Á¶ÀýÇÏ´Â ¹æ¹ý
2,863
PHP ¹è¿­¿¡¼­ ¹«ÀÛÀ§·Î Çϳª »Ì¾ÆÁÖ´Â array rand() ÇÔ¼ö
2,862
PHP Á¤±Ô½Ä Á¤¸®
2,861
PHP Á¤±Ô½ÄÀ» È°¿ëÇÑ ÅÂ±× ¹× ƯÁ¤ ¹®ÀÚ¿­ Á¦°Å ¹× ÃßÃâ ¹æ¹ý
2,860
php Å©·Ñ¸µ ¶Ç´Â ÆÄ½Ì ÇÔ¼ö, Á¤±Ô½Ä ¸ðÀ½
2,859
Á¦ÀÌÄõ¸® ±âº» ¸í·É¾î
2,858
À¥ÆäÀÌÁö °¡·Î ¸ðµå¼¼·Î ¸ðµå ÀνÄÇϱâ
2,857
¸ð¹ÙÀÏ À¥ È­¸é °­Á¦ ȸÀü(°¡·Î¸ðµå °íÁ¤)
2,856
[HTML5]¿¡¼­ frameset ´ëü ¹æ¹ý°ú iframe ¼Ó¼º
¸ñ·Ï
¹ÂÁ÷Æ®·ÎÆ® ºÎ»ê±¤¿ª½Ã ºÎ»êÁø±¸ °¡¾ßµ¿ ¤Ó °³ÀÎÁ¤º¸Ãë±Þ¹æħ
Copyright ¨Ï musictrot All rights reserved.