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


ÀÔ·ÂÆû¿¡ ÀÔ·ÂµÈ ³»¿ëÀ» Á¤·Ä(sort)ÇÕ´Ï´Ù.
18³â Àü

<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
ÃßõÃßõ : 377 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
761
¸®´ª½º ¸í·É¾î
760
mail() ÇÔ¼ö¸¦ ÀÌ¿ëÇÑ Ã·ºÎ ¸ÞÀÏ º¸³»±â
759
.htaccess¸¦ ÀÌ¿ëÇÑ PHP ini ȯ°æ¼³Á¤
758
ÆÄÀÏã±â ¹öư À̹ÌÁö·Î º¯°æÇϱâ
757
ÀÚµ¿·Î±×ÀÎ ¿¹Á¦ (·Îº¿)
756
Á¤±Ô½Ä (PHP)
755
mysqladmin Ȱ¿ë¹æ¹ý ÃÑÁ¤¸®
754
¾ç/À½·Â ´Þ·Â º¯È¯ ÇÔ¼ö(¶ì,¿äÀÏ,°£Áö Æ÷ÇÔ)
753
¹Ú½º¾ÈÀÇ ±ÛÀÌ »óÇÏÁ¿ì..¿øÇÏ´Â ¹æÇâÀ¸·Î..
752
ƯÀÌÇÑ ±ÛÀھִϸÞÀ̼Ç
751
PHP ¼Óµµ¸¦ Çâ»ó½ÃŰ´Â ¹æ¹ýµé ¡Ú ¹«Á¶°Ç ¾Ë¾Æ¾ß ÇÒ PHP ¼Óµµ Å×½ºÆ® 14 °¡Áö
750
ÀÚ¹Ù½ºÅ©¸³Æ® º¸¾È¹ýÀÔ´Ï´Ù
749
À¥ ¹®¼­ ¾Ïȣȭ ½ºÅ©¸³Æ®
748
¼¿·ºÆ® ¸Þ´º¸¦ ·¹À̾î·Î Ç¥Çö
747
CSS ¹× JAVASCRIPT ¼Ò½º È¿°úÀûÀ¸·Î ¼û±â±â
746
µµÆ® À̸ðƼÄÜ »ý¼º±â
745
¸µÅ©¿¡µµ ¼Ò¸®°¡...
744
·Îµù ·¹ÀÌ¾î ¸¸µé±â
743
textareaÀÇ ÀÔ·ÂµÈ HTMLÀ» ¹Ì¸®º¸±â ÇÕ´Ï´Ù..
742
textarea¿¡ ÀÖ´Â ³»¿ëÀ» ¼±Åø¸ Çϸé COPY°¡ µÇ°í ´Ù¸¥ ÆûÀ» ¼±ÅÃÇÏ¸é ºÙÈ÷±â°¡ µË´Ï´Ù.
741
textarea¾ÈÀ» Ŭ¸¯ÇÏ¸é ±× ¾È¿¡ ³»¿ëÀüü°¡ ¼±Åõ˴ϴÙ
740
input ÀԷ»óÀÚ¿¡ ÅØ½ºÆ® ÀÔ·ÂÀ» Á¦ÇÑ ¹× ±ÛÀÚ¼ö¸¦ ½Ç½Ã°£ Ç¥½ÃÇÕ´Ï´Ù.
739
textarea¿¡ ±ÛÀ» ÀÔ·ÂÇÏ¸é ´Ù¸¥ textarea¿Í ·¹À̾ ½Ç½Ã°£À¸·Î ŸÀÌÇÎ µË´Ï´Ù
738
textarea¿¡ ÀÔ·ÂµÈ ÅØ½ºÆ®¸¦ ÄíŰ·Î ÀúÀåÇÕ´Ï´Ù
737
textarea¿¡ ÀÔ·ÂµÈ ³»¿ëÁß URL,µµ¸ÞÀÎ, À̸ÞÀϸ¸ ÃßÃâÇÕ´Ï´Ù.
736
üũ¹Ú½º¸¦ ¼±ÅÃÇØ¾ß¸¸ INPUTÀÌ È°¼ºÈ­ µË´Ï´Ù.
735
radio¹öư ¼±Åà ¿©ºÎ¿¡ µû¶ó ¼¿·ºÆ® Ç׸ñÀÌ ¹Ù²ò´Ï´Ù
734
radio¹öưÀ» ¼±ÅÃÇϸé ÇØ´ç value°ªÀÌ input »óÀÚ¿¡ ³ªÅ¸³³´Ï´Ù.
733
¶óµð¿À ¹öư ¸ñ·ÏÀ» ¿É¼Ç¿¡ µû¶ó LOCKÀ» °Ì´Ï´Ù.
732
¶óµð¿À ¹öư ¼±Åÿ¡ µû¶ó ÀÔ·ÂÆûÀÌ ³ªÅ¸³ª°Å³ª »ç¶óÁý´Ï´Ù.
¸ñ·Ï
¹ÂÁ÷Æ®·ÎÆ® ºÎ»ê±¤¿ª½Ã ºÎ»êÁø±¸ °¡¾ßµ¿ ¤Ó °³ÀÎÁ¤º¸Ãë±Þ¹æÄ§
Copyright ¨Ï musictrot All rights reserved.