출처: http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery
Using the tablesorter plugin
http://tablesorter.com/docs/
<thread> 태그 안에 있는 것을 클릭하면 테이블을 정렬한다. 신기하네...
숫자, 문자 등을 알아서 판별한다고 하는군. 상세한 것은 위의 링크를 참조.
This tells tablesorter to sort on the first and second column in ascending order.
정렬 초기값 설정.
Sort multiple columns simultaneously by holding down the shift key and clicking a second, third or even fourth column header!
하나 선택해서 그걸 기준으로 정렬하고 쉬프트 클릭하고 다른 것 선택하면 계단식으로 정렬됨(기존 정렬을 기준으로 다시 정렬).
속도만 받쳐주면 테이블 정렬은 이걸로 해도 될듯?!
Using the tablesorter plugin
http://tablesorter.com/docs/
$("#myTable").tablesorter(); --------------------------------------------- <table id="myTable"> <thead> <tr> <th>Last Name</th> <th>First Name</th> <th>Email</th> <th>Due</th> <th>Web Site</th> </tr> </thead> <tbody> <tr> <td>Smith</td> <td>John</td> <td>jsmith@gmail.com</td> <td>$50.00</td> <td>http://www.jsmith.com</td> </tr> <tr> <td>Bach</td> <td>Frank</td> <td>fbach@yahoo.com</td> <td>$50.00</td> <td>http://www.frank.com</td> </tr> <tr> <td>Doe</td> <td>Jason</td> <td>jdoe@hotmail.com</td> <td>$100.00</td> <td>http://www.jdoe.com</td> </tr> <tr> <td>Conway</td> <td>Tim</td> <td>tconway@earthlink.net</td> <td>$50.00</td> <td>http://www.timconway.com</td> </tr> </tbody> </table> |
숫자, 문자 등을 알아서 판별한다고 하는군. 상세한 것은 위의 링크를 참조.
$("#myTable").tablesorter( {sortList: [[0,0], [1,0]]} ); |
정렬 초기값 설정.
Sort multiple columns simultaneously by holding down the shift key and clicking a second, third or even fourth column header!
하나 선택해서 그걸 기준으로 정렬하고 쉬프트 클릭하고 다른 것 선택하면 계단식으로 정렬됨(기존 정렬을 기준으로 다시 정렬).
속도만 받쳐주면 테이블 정렬은 이걸로 해도 될듯?!
'프로그래밍 > Web' 카테고리의 다른 글
[javascript] 스크립트로 style, class 변경 (1) | 2009.07.24 |
---|---|
[jQuery] jQuery 예제 01 (0) | 2009.07.17 |
[jQuery] Getting Started with jQuery 03 (0) | 2009.07.11 |
[jQuery] Getting Started with jQuery 02 (0) | 2009.07.10 |
[jQuery] Getting Started with jQuery 01 (0) | 2009.07.10 |