[jQuery] tr 이동시키기 > 기술자료 | 해피정닷컴

[jQuery] tr 이동시키기 > 기술자료

본문 바로가기

사이트 내 전체검색

[jQuery] tr 이동시키기 > 기술자료

JavaScript [jQuery] tr 이동시키기

페이지 정보


본문

<table>
  <caption>목록</caption>
  <colgroup width="100">
  <colgroup>
  <thead>
    <tr>
      <th scope="col">순서</th>
      <th scope="col">제목</th>
    </tr>
  </thead>
  <tbody>
    <tr id="tr_1">
      <td>
        <input type="radio" name="ChangButton" value="1">
        <input type='button' value='↑' onclick="moveRowUpDown('up')" style='width:25px; height:25px;'>
        <input type='button' value='↓' onclick="moveRowUpDown('down')" style='width:25px; height:25px;'>
      </td>
      <td>1 타이틀입니다.</td>
    </tr>
    <tr id="tr_2">
      <td>
        <input type="radio" name="ChangButton" value="2">
        <input type='button' value='↑' onclick="moveRowUpDown('up')" style='width:25px; height:25px;'>
        <input type='button' value='↓' onclick="moveRowUpDown('down')" style='width:25px; height:25px;'>
      </td>
      <td>2 이벤트</td>
    </tr>
    <tr id="tr_3">
      <td>
        <input type="radio" name="ChangButton" value="3">
        <input type='button' value='↑' onclick="moveRowUpDown('up')" style='width:25px; height:25px;'>
        <input type='button' value='↓' onclick="moveRowUpDown('down')" style='width:25px; height:25px;'>
      </td>
      <td>3 금주의 NF소개</td>
    </tr>
    <tr id="tr_4">
      <td>
        <input type="radio" name="ChangButton" value="4">
        <input type='button' value='↑' onclick="moveRowUpDown('up')" style='width:25px; height:25px;'>
        <input type='button' value='↓' onclick="moveRowUpDown('down')" style='width:25px; height:25px;'>
      </td>
      <td>4 야간출근현황 타이틀</td>
    </tr>
  </tbody>
</table>


<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script>
function moveRowUpDown(option) {
 var num = $('input[name=ChangButton]:checked').val();
 if(num==undefined){
  alert("select radio");
  return;
 }
 var element = $("#tr_"+num);
 if(option=="up"){
  if( element.prev().html() != null  && element.prev().attr("id") != "header"){
   element.insertBefore(element.prev());
  }
 }else{
        if( element.next().html() != null ){
            element.insertAfter(element.next());
        }
 }
}
</script>


관련자료
http://blog.naver.com/ggugers/10151692442

댓글목록

등록된 댓글이 없습니다.


Total 2,634건 53 페이지
  • RSS
기술자료 목록
1594
MSSQL   23399  2014-09-29 11:28  
1593
HTML   15701  2014-09-28 23:45  
1592
HTML   13314  2014-09-28 23:28  
열람
JavaScript   19178  2014-09-27 08:32  
1590
ClassicASP   12329  2014-09-26 01:08 ~ 2018-12-01 22:51  
1589
그누보드   12158  2014-09-25 16:34  
1588
PHP   12917  2014-09-25 15:58 ~ 2018-09-26 14:52  
1587
JavaScript   13687  2014-09-25 14:32  
1586
그누보드   12257  2014-09-20 22:19  
1585
영카트   12883  2014-09-16 10:23  
1584
PHP   36618  2014-09-13 13:02 ~ 2022-09-26 20:44  
1583
영카트   15216  2014-09-05 22:06 ~ 2015-05-08 00:00  
1582
영카트   17566  2014-09-05 18:18  
1581
영카트   367062  2014-08-30 00:07  
1580
JavaScript   24731  2014-08-29 01:06 ~ 2016-08-04 00:00  
1579
그누보드   12136  2014-08-28 15:36  
1578
그누보드   13715  2014-08-23 19:55  
1577
그누보드   65314  2014-08-20 11:50 ~ 2022-11-22 16:25  
1576
일반   28220  2014-08-18 07:54  
1575
Adobe   15978  2014-08-16 23:54  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.