javascript動態建立表格及添加資料執行個體詳解

來源:互聯網
上載者:User

   本文執行個體講述了javascript動態建立表格及添加資料的方法。分享給大家供大家參考。具體分析如下:

  1. 動態建立表格(代碼不相容IE6)

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>動態建立表格</title> <script type="text/javascript"> function AppendTableData() { var table = document.getElementById("tblMain"); var data = { "百度": "http://www.baidu.com", "三聯": "http://www.3lian.net", "搜狐": "http://www.sohu.com" }; for (var key in data) { var tr = document.createElement("tr"); var td1 = document.createElement("td"); td1.innerText = key; //FireFox不支援innerText,只能使用innerHTML tr.appendChild(td1); var td2 = document.createElement("td"); td2.innerHTML = "<a href='" + data[key] + "'>" + data[key] + "</a>"; tr.appendChild(td2); table.appendChild(tr); } } </script> </head> <body> <table id="tblMain"></table> <input type="button" value="動態添加網格資料" onclick="AppendTableData()" /> </body> </html>

  2. 動態建立表格(相容IE6、IE7)

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>添加網格資料(處理了IE相容問題)</title> <script type="text/javascript"> function AppendData() { var data = {"三聯":"http://www.3lian.net", "百度":"http://www.baidu.com", "搜狐": "http://www.sohu.com"}; var table = document.getElementById("tblMain"); for (var key in data) { var value = data[key]; var tr = table.insertRow(-1); //FireFox必須使用-1這個參數 var td1 = tr.insertCell(-1); td1.innerText = key; var td2 = tr.insertCell(-1); td2.innerHTML = "<a href='" + value + "'>" + value + "</a>"; } } </script> </head> <body> <table border="1" id="tblMain"></table> <input type="button" value="添加網格資料(處理了IE相容問題)" onclick="AppendData()" /> </body> </html>

  3. 動態建立表格(相容IE6、IE7)

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>動態建立表格(處理IE6相容問題)</title> <script type="text/javascript"> function AppendTableData() { var table = document.getElementById("tblMain"); var data = { "百度": "http://www.baidu.com", "指令碼之家": "http://www.3lian.net", "搜狐": "http://www.sohu.com" }; for (var key in data) { var tr = document.createElement("tr"); var td1 = document.createElement("td"); td1.innerText = key; tr.appendChild(td1); var td2 = document.createElement("td"); td2.innerHTML = "<a href='" + data[key] + "'>" + data[key] + "</a>"; tr.appendChild(td2); //table.appendChild(tr); 把這一句替換掉 table.tBodies[0].appendChild(tr); } } </script> </head> <body> <!--由於動態添加的資料在debugbar中看產生的HTML代碼發現, 會自動添加一個<tbody> 並且內容是空的,把我們動態產生的資料給衝掉了, 所以我們手工添加一個<tbody> tr添加到這個<tbody>下面 --> <table id="tblMain"><tbody></tbody></table> <input type="button" value="動態添加網格資料" onclick="AppendTableData()" /> </body> </html>

  希望本文所述對大家的javascript程式設計有所協助。

相關文章

聯繫我們

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