用javascript實現行的上下移動

來源:互聯網
上載者:User

http://sunxboy.javaeye.com/blog/191652

 

 

2008-05-10用javascript實現行的上下移動

關鍵字: 行 移動 Html代碼

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">  
  2. <html>  
  3. <head>  
  4. <title>Table test</title>  
  5. <style type="text/css">  
  6. <!--  
  7. td  { text-align:center;font-size:12px;padding:3px;}  
  8. -->  
  9. </style>  
  10. </head>  
  11. <body>  
  12. <table id="table1" bordercolor="#000000" width="200" border="1">  
  13.     <tbody>  
  14.         <tr>  
  15.             <td width="25%">1</td>  
  16.             <td width="25%">11</td>  
  17.    <!--使用javascript:void(0)是為了能夠傳遞this參數到事件處理常式-->  
  18.             <td width="25%"><a href="javascript:void(0)" onclick="moveUp(this)">上移</a></td>  
  19.             <td width="25%"><a href="javascript:void(0)" onclick="moveDown(this)">下移</a></td>  
  20.         </tr>  
  21.         <tr>  
  22.             <td>2</td>  
  23.             <td>22</td>  
  24.             <td><a href="javascript:void(0)" onclick="moveUp(this)">上移</a></td>  
  25.             <td><a href="javascript:void(0)" onclick="moveDown(this)">下移</a></td>  
  26.         </tr>  
  27.         <tr>  
  28.             <td>3</td>  
  29.             <td>33</td>  
  30.             <td><a href="javascript:void(0)" onclick="moveUp(this)">上移</a></td>  
  31.             <td><a href="javascript:void(0)" onclick="moveDown(this)">下移</a></td>  
  32.         </tr>  
  33.         <tr>  
  34.             <td>4</td>  
  35.             <td>44</td>  
  36.             <td><a href="javascript:void(0)" onclick="moveUp(this)">上移</a></td>  
  37.             <td><a href="javascript:void(0)" onclick="moveDown(this)">下移</a></td>  
  38.         </tr>  
  39.         <tr>  
  40.             <td>5</td>  
  41.             <td>55</td>  
  42.             <td><a href="javascript:void(0)" onclick="moveUp(this)">上移</a></td>  
  43.             <td><a href="javascript:void(0)" onclick="moveDown(this)">下移</a></td>  
  44.         </tr>  
  45.     </tbody>  
  46. </table>  
  47. </body>  
  48. </html>  
  49.   
  50. <script language="JavaScript" type="text/javascript">  
  51. <!--   
  52. function cleanWhitespace(element) {   
  53.  //遍曆element的子結點   
  54.  for (var i = 0; i < element.childNodes.length; i++) {   
  55.   var node = element.childNodes[i];   
  56.   //判斷是否是空白文本結點,如果是,則刪除該結點   
  57.   if (node.nodeType == 3 && !/\S/.test(node.nodeValue))    
  58.   node.parentNode.removeChild(node);   
  59.  }   
  60. }   
  61. //獲得表格對象   
  62. var _table=document.getElementById("table1");   
  63. cleanWhitespace(_table);   
  64. //使表格行上移,接收參數為連結化物件   
  65. function moveUp(_a){   
  66.  //通過連結化物件擷取表格行的引用   
  67.  var _row=_a.parentNode.parentNode;   
  68.  //如果不是第一行,則與上一行交換順序   
  69.  if(_row.previousSibling)swapNode(_row,_row.previousSibling);   
  70. }   
  71. //使表格行下移,接收參數為連結化物件   
  72. function moveDown(_a){   
  73.  //通過連結化物件擷取表格行的引用   
  74.  var _row=_a.parentNode.parentNode;   
  75.  //如果不是最後一行,則與下一行交換順序   
  76.  if(_row.nextSibling)swapNode(_row,_row.nextSibling);   
  77. }   
  78. //定義通用的函數交換兩個結點的位置   
  79. function swapNode(node1,node2){   
  80.  //擷取父結點   
  81.  var _parent=node1.parentNode;   
  82.  //擷取兩個結點的相對位置   
  83.  var _t1=node1.nextSibling;   
  84.  var _t2=node2.nextSibling;   
  85.  //將node2插入到原來node1的位置   
  86.  if(_t1)_parent.insertBefore(node2,_t1);   
  87.  else _parent.appendChild(node2);   
  88.  //將node1插入到原來node2的位置   
  89.  if(_t2)_parent.insertBefore(node1,_t2);   
  90.  else _parent.appendChild(node1);   
  91. }   
  92. //-->  
  93. </script>  
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Table test</title><style type="text/css"><!--td  { text-align:center;font-size:12px;padding:3px;}--></style></head><body><table id="table1" bordercolor="#000000" width="200" border="1"><tbody><tr><td width="25%">1</td><td width="25%">11</td><!--使用javascript:void(0)是為了能夠傳遞this參數到事件處理常式--><td width="25%"><a href="javascript:void(0)" onclick="moveUp(this)">上移</a></td><td width="25%"><a href="javascript:void(0)" onclick="moveDown(this)">下移</a></td></tr><tr><td>2</td><td>22</td><td><a href="javascript:void(0)" onclick="moveUp(this)">上移</a></td><td><a href="javascript:void(0)" onclick="moveDown(this)">下移</a></td></tr><tr><td>3</td><td>33</td><td><a href="javascript:void(0)" onclick="moveUp(this)">上移</a></td><td><a href="javascript:void(0)" onclick="moveDown(this)">下移</a></td></tr><tr><td>4</td><td>44</td><td><a href="javascript:void(0)" onclick="moveUp(this)">上移</a></td><td><a href="javascript:void(0)" onclick="moveDown(this)">下移</a></td></tr><tr><td>5</td><td>55</td><td><a href="javascript:void(0)" onclick="moveUp(this)">上移</a></td><td><a href="javascript:void(0)" onclick="moveDown(this)">下移</a></td></tr></tbody></table></body></html><script language="JavaScript" type="text/javascript"><!--function cleanWhitespace(element) {//遍曆element的子結點for (var i = 0; i < element.childNodes.length; i++) {var node = element.childNodes[i];//判斷是否是空白文本結點,如果是,則刪除該結點if (node.nodeType == 3 && !/\S/.test(node.nodeValue))node.parentNode.removeChild(node);}}//獲得表格對象var _table=document.getElementById("table1");cleanWhitespace(_table);//使表格行上移,接收參數為連結化物件function moveUp(_a){//通過連結化物件擷取表格行的引用var _row=_a.parentNode.parentNode;//如果不是第一行,則與上一行交換順序if(_row.previousSibling)swapNode(_row,_row.previousSibling);}//使表格行下移,接收參數為連結化物件function moveDown(_a){//通過連結化物件擷取表格行的引用var _row=_a.parentNode.parentNode;//如果不是最後一行,則與下一行交換順序if(_row.nextSibling)swapNode(_row,_row.nextSibling);}//定義通用的函數交換兩個結點的位置function swapNode(node1,node2){//擷取父結點var _parent=node1.parentNode;//擷取兩個結點的相對位置var _t1=node1.nextSibling;var _t2=node2.nextSibling;//將node2插入到原來node1的位置if(_t1)_parent.insertBefore(node2,_t1);else _parent.appendChild(node2);//將node1插入到原來node2的位置if(_t2)_parent.insertBefore(node1,_t2);else _parent.appendChild(node1);}//--></script>

 

  • 描述: 行的移動,相容IE/Firefox
  • 大小: 2 KB
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.