ȨÀ¸·Î | ¹«·áȸ¿ø°¡ÀÔ | ¾ÆÀ̵ð/ºñ¹øÃ£±â
ÃßõÀ½¾Ç¹æ¼Û
ÀÔ·ÂÆû¿¡ ÀÔ·ÂµÈ ³»¿ëÀ» Á¤·Ä(sort)ÇÕ´Ï´Ù.
15³â Àü

<html>
<head>
<title>http://www.xtx.kr</title>
<SCRIPT LANGUAGE="JavaScript">
<!--
function dates(datea,dateb){
var yeara = 1 * datea.substring(6,8);
var yearb = 1 * dateb.substring(6,8);
if (yeara > yearb) return true;
if (yeara < yearb) return false;

var montha = 1 * datea.substring(0,2);
var monthb = 1 * dateb.substring(0,2);
if (montha > monthb) return true;
if (montha < monthb) return false;

var daya = 1 * datea.substring(3,5);
var dayb = 1 * dateb.substring(3,5);
if (daya > dayb) return true;
return false;
}

function exchange(i,form){
document.forms[6].check.value = document.forms[i].check.value;
document.forms[i].check.value = document.forms[i+1].check.value;
document.forms[i+1].check.value = document.forms[6].check.value;
document.forms[6].units.value = document.forms[i].units.value;
document.forms[i].units.value = document.forms[i+1].units.value;
document.forms[i+1].units.value = document.forms[6].units.value;
document.forms[6].amount.value = document.forms[i].amount.value;
document.forms[i].amount.value = document.forms[i+1].amount.value;
document.forms[i+1].amount.value = document.forms[6].amount.value;
document.forms[6].presented.value = document.forms[i].presented.value;
document.forms[i].presented.value = document.forms[i+1].presented.value;
document.forms[i+1].presented.value = document.forms[6].presented.value;
}

function amountSort(form){
for (var j = 0; j<5; j++){
for(var i=0; i<5; i++){
var l = 1 * i + 1;
if(1 * document.forms[i].amount.value > 1 * document.forms[i+1].amount.value) {
exchange(i,form);
}
}
}
}

function checkSort(form){
for (var j = 0; j<5; j++){
for(var i=0; i<5; i++){
var l = 1 * i + 1;
if(1 * document.forms[i].check.value > 1 * document.forms[i+1].check.value){
exchange(i,form);
}
}
}
}

function dateSort(form){
for (var j = 0; j<5; j++){
for(var i=0; i<5; i++){
var l = 1 * i + 1;
if(dates(document.forms[i].units.value,document.forms[i+1].units.value)){
exchange(i,form);
}
}
}
}

function presentSort(form){
for (var j = 0; j<5; j++){
for(var i=0; i<5; i++){
var l = 1 * i + 1;
if(document.forms[i].presented.value >document.forms[i+1].presented.value){
exchange(i,form);
}
}
}
}
//-->
</SCRIPT>
</HEAD>

<center>
<table border=0 cellpadding=0>

<form method=post>
<tr align=center>
<td><div align=center> <input type="button" value="³¯Â¥Á¤·Ä" onclick=dateSort(this.form)> </div></td>
<td><div align=center> <input type="button" value="¼ýÀÚÁ¤·Ä" onClick=checkSort(this.form)> </div></td>
<td><div align=center> <input type="button" value="¼Ò¼öÁ¡¼ýÀÚ" onClick=amountSort(this.form)> </div></td>
<td><div align=center> <input type="button" value=" ÇѱÛÁ¤·Ä " onClick=presentSort(this.form)> </div></td>
</tr>
<tr>
<td><input type=text name=units size=10 value=2001/10/11></td>
<td><input type=text name=check size=10 value=3></td>
<td><input type=text name=amount size=12 value=99.10></td>
<td><input type=text name=presented size=13 value="ºí·çºñ"></td>
</tr>
</form>

<form method=post>
<tr>
<td><input type=text name=units size=10 value=2005/05/22></td>
<td><input type=text name=check size=10 value=7></td>
<td><input type=text name=amount size=12 value=12.01></td>
<td><input type=text name=presented size=13 value="³×À̹ö"></td>
</tr>
</form>

<form method=post>
<tr>
<td><input type=text name=units size=10 value=1979/12/25></td>
<td><input type=text name=check size=10 value=1></td>
<td><input type=text name=amount size=12 value=1.08></td>
<td><input type=text name=presented size=13 value="´ÙÀ½"></td>
</tr>
</form>

<form method=post>
<tr>
<td><input type=text name=units size=10 value=1971/01/02></td>
<td><input type=text name=check size=10 value=33></td>
<td><input type=text name=amount size=12 value=22.05></td>
<td><input type=text name=presented size=13 value="³×ÀÌÆ®"></td>
</tr>
</form>

<form method=post>
<tr>
<td><input type=text name=units size=10 value=1976/08/02></td>
<td><input type=text name=check size=10 value=22></td>
<td><input type=text name=amount size=12 value=11.95></td>
<td><input type=text name=presented size=13 value="¾ßÈÄ"></td>
</tr>
</form>

<form method=post>
<tr>
<td><input type=text name=units size=10 value=2006/12/14> </td>
<td><input type=text name=check size=10 value=11></td>
<td><input type=text name=amount size=12 value=22.65></td>
<td><input type=text name=presented size=13 value="¿¥ÆÄ½º"></td>
</tr>
</form>

</table>
</center>

<form method=post>
<tr>
<td><input type=hidden name=units size=5></td>
<td><input type=hidden name=check size=6></td>
<td><input type=hidden name=amount size=5></td>
<td><input type=hidden name=presented size=20></td>
<tr>
</form>

</body>
</html>

http://www.xtx.kr
ÃßõÃßõ : 245 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
3,033
 PHP Á¤±Ô½Ä Á¤¸®
3,032
 PHP Á¤±Ô½ÄÀ» Ȱ¿ëÇÑ ÅÂ±× ¹× ƯÁ¤ ¹®ÀÚ¿­ Á¦°Å ¹× ÃßÃâ ¹æ¹ý
3,031
 php Å©·Ñ¸µ ¶Ç´Â ÆÄ½Ì ÇÔ¼ö, Á¤±Ô½Ä ¸ðÀ½
3,030
 Á¦ÀÌÄõ¸® ±âº» ¸í·É¾î
3,029
 À¥ÆäÀÌÁö °¡·Î ¸ðµå¼¼·Î ¸ðµå ÀνÄÇϱâ
3,028
 ¸ð¹ÙÀÏ À¥ È­¸é °­Á¦ ȸÀü(°¡·Î¸ðµå °íÁ¤)
3,027
 [HTML5]¿¡¼­ frameset ´ëü ¹æ¹ý°ú iframe ¼Ó¼º
3,026
 HTML <Audio> »ç¿ë¹ý
3,025
 À©µµ¿ì10 ½Ã½ºÅÛÆÄÀÏ ¼Õ»ó (Ãʰ£´Ü ¿À·ù º¹±¸¹æ¹ý!!)
3,024
 PHP ÆÄÀÏ Á¸Àç ¿©ºÎ ÆÄ¾ÇÇϱâ(·ÎÄà ÆÄÀÏ Á¸Àç ¹× ¿ø°ÝÁö ÆÄÀÏ Á¸Àç)
3,023
 [CSS] ¹Ú½º ¼¼·Î °¡¿îµ¥ Áß¾Ó Á¤·Ä 6°¡Áö
3,022
 CSS Layout ¼öÆò & ¼öÁ÷ Á¤·Ä
3,021
 ¿©·¯ µµ¸ÞÀÎµé °£ ÄíŰ °øÀ¯Çϱâ
3,020
 ÅÂ±× »çÀÌ¿¡ ÀÖ´Â ÅØ½ºÆ®¸¦ ÃßÃâ
3,019
 [JQuery] textbox focus on offÀ϶§ ¼ýÀÚ ÄÞ¸¶ º¸¿©ÁÖ±â
3,018
 ÄíŰ »ý¼º,°¡Á®¿À±â,»èÁ¦
3,017
 »ç¿ëÀÚ ÇÔ¼ö ¸ðÀ½
3,016
 ¸¶¿ì½º,Űº¸µå Á¦ÇÑ ( ¿À¸¥ÂÊŬ¸¯,µå·¡±×,¿µ¿ª¼±Åõî..)
3,015
 [HTML5] <video> - DOMÀ¸·Î Á¦¾îÇϱâ
3,014
 HTML5 video ű׿¡¼­ ¿µ»ó Á¿ì¹ÝÀü
3,013
 PHP - ƯÁ¤ ÅÂ±× ¹× ¹®ÀÚ¿­ ÃßÃâ, Á¦°Å
3,012
 [PHP] define°ú definedÀÇ Â÷ÀÌ
3,011
 ¿ìŬ¸¯ ¿Ïº®Â÷´Ü ½ºÅ©¸³Æ®
3,010
 iframe ³ôÀÌ 100% ¸ÂÃß±â
3,009
 curl ÇÔ¼ö¸¦ ÀÌ¿ëÇÑ HTTP REFERER º¯°æ
¸ñ·Ï
¹ÂÁ÷Æ®·ÎÆ® ºÎ»ê±¤¿ª½Ã ºÎ»êÁø±¸ °¡¾ßµ¿ ¤Ó °³ÀÎÁ¤º¸Ãë±Þ¹æÄ§
Copyright (C) musictrot All rights reserved.