JS產生表格,合併儲存格

來源:互聯網
上載者:User


在網上找了這麼多都沒有JS產生表格然後JS操作合併儲存格的,或者是別人寫的太負責了,又不想去理解,所以就自己動手寫了個簡單點的。

其實代碼也不多,思路清晰就基本上可以了。一開始的時候是被colspan蒙了,因為要注意大小寫才可以的。看下代碼,

 

 
  1. <html> 
  2. <head> 
  3. <script type="text/javascript"> 
  4. function showRowOrColTable(){ 
  5. //建立table
  6.     var table = document.createElement("table"); 
  7.         var projectid=3; //看圖下合并多少列就寫多少
  8.         table.border = "1"; 
  9.         var rowIndex = 0; 
  10.         var rowStart = 0; 
  11.         var rowLength = 2; 
  12.         var colIndex = 1; 
  13.         var colLength = 2; 
  14.         var projectLength=projectid*2; 
  15.         for ( var i = 0; i < 5; i++) { 
  16.             var row = table.insertRow(i); 
  17.             for ( var j = 0; j < projectLength+1; j++) { 
  18.                 var cell = row.insertCell(j); 
  19.                 cell.innerHTML = "hello world"; //賦值內容
  20.             } 
  21.         } 
  22.         for ( var j = 0; j <= rowIndex; j++) { 
  23.             table.rows[j].cells[colIndex].colSpan = projectid; 
  24.             table.rows[j].cells[projectid*2-1].colSpan = projectid; 
  25.             for ( var i = 0; i < projectid - 1; i++) { 
  26.                 table.rows[j].deleteCell(colIndex+1); 
  27.                 table.rows[j].deleteCell(3); 
  28.             } 
  29.         } 
  30.         table.rows[rowIndex].cells[rowStart].rowSpan = 2; 
  31.         table.rows[rowIndex + 1].deleteCell(0); 
  32.         table.rows[0].cells[0].innerHTML = "&nbsp;"; 
  33.         table.rows[0].cells[1].innerHTML = "個人得分"; 
  34.         table.rows[0].cells[2].innerHTML = "個人準確率"; 
  35.         table.rows[1].cells[0].innerHTML = "第一"; 
  36.         table.rows[1].cells[1].innerHTML = "第二"; 
  37.         table.rows[1].cells[2].innerHTML = "第一"; 
  38.         table.rows[1].cells[3].innerHTML = "第二"; 
  39.         var _row=table.rows[1]; 
  40.         document.getElementById("table").appendChild(table); 
  41.     } 
  42.      
  43.     </script> 
  44.     </head> 
  45.     <body onLoad="showRowOrColTable()"> 
  46.         <div id="table"></div> 
  47.     </body> 
  48.     </html> 

650) this.width=650;" src="http://www.bkjia.com/uploads/allimg/131228/12021A415-0.jpg" border="0" alt="" />

 

本文出自 “Just do it” 部落格,請務必保留此出處http://davenzeng.blog.51cto.com/3896952/1128284

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.