JS 간단 한 표 정렬 작업 예제 구현
<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-type" content="text/html" charset="utf-8">
<title>sort table</title>
<style>
*{
margin:0px;
padding:0px;
}
body{
background:#ccc;
}
table{
width:350px;
margin:0 auto;
background-color:#eee;
}
table th{
cursor:hand;
padding:5px 0;
background-color:#999;
}
table td{
background-color:#fff;
font-size:16px;
font-weight:normal;
text-align:center;
line-height:30px;
}
</style>
<script language="javascript">
function sortCells(type){
var tbs=document.getElementsByTagName("table")[0];
var arr=[];
var arr2=[];
for(var i=1;i<tbs.rows.length;i++){
var text=tbs.rows[i].cells[type].innerText;
arr.push(text);
arr2[text]=i;
}
if(type==0){
arr.sort(function(a,b){return a-b});
}else{
arr.sort();
}
var temp="";
for(var j=1;j<tbs.rows.length;j++){
temp=tbs.rows[j].cells[0].innerText;
tbs.rows[j].cells[0].innerText=tbs.rows[arr2[arr[j-1]]].cells[0].innerText;
tbs.rows[arr2[arr[j-1]]].cells[0].innerText=temp;
temp=tbs.rows[j].cells[1].innerText;
tbs.rows[j].cells[1].innerText=tbs.rows[arr2[arr[j-1]]].cells[1].innerText;
tbs.rows[arr2[arr[j-1]]].cells[1].innerText=temp;
temp=tbs.rows[j].cells[2].innerText;
tbs.rows[j].cells[2].innerText=tbs.rows[arr2[arr[j-1]]].cells[2].innerText;
tbs.rows[arr2[arr[j-1]]].cells[2].innerText=temp;
// console.log(arr2);
for(var i=1;i<tbs.rows.length;i++){
var text=tbs.rows[i].cells[type].innerText;
arr2[text]=i;
}
}
}
</script>
</head>
<body>
<center>sort table</center>
<table border="0">
<tr>
<th onclick="sortCells(0);"> </th>
<th onclick="sortCells(1);"> </th>
<th onclick="sortCells(2);"> </th>
</tr>
<tr>
<td>2</td>
<td>BB</td>
<td>2015-09-12</td>
</tr>
<tr>
<td>3</td>
<td>CC</td>
<td>2015-07-12</td>
</tr>
<tr>
<td>1</td>
<td>AA</td>
<td>2015-09-11</td>
</tr>
<tr>
<td>4</td>
<td>DD</td>
<td>2015-06-12</td>
</tr>
</table>
</body>
</html>
실행 효과:더 많은 자 바스 크 립 트 관련 내용 에 관심 이 있 는 독 자 는 본 사이트 의 주 제 를 볼 수 있다.,,,,,,,,,,
본 고 에서 말 한 것 이 여러분 의 자 바스 크 립 트 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JS 판단 수조 네 가지 실현 방법 상세그러면 본고는 주로 몇 가지 판단 방식과 방식 판단의 원리를 바탕으로 문제가 있는지 토론하고자 한다. 예를 들어 html에 여러 개의 iframe 대상이 있으면 instanceof의 검증 결과가 기대에 부합되지 않을...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.