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

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

<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
ÃßõÃßõ : 299 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
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.