JavaScript簡單表格編輯功能實現方法_javascript技巧

來源:互聯網
上載者:User

本文執行個體講述了JavaScript簡單表格編輯功能實現方法。分享給大家供大家參考。具體如下:

<html><head><script type="text/javascript">function getInnerHTML(){alert(document.getElementById("tr2").innerHTML);} function insCell(){ var x=document.getElementById('tr2').insertCell(0) x.innerHTML="Table Row, Table Cell"} function delCell(){ document.getElementById('tr2').deleteCell(0)} function deleteCaption(){ document.getElementById('myTable').deleteCaption()} function createCaption(){var x=document.getElementById('myTable').createCaption()x.innerHTML="My Table"} function delRow(){document.getElementById('myTable').deleteRow(0)} function insRow(){var x=document.getElementById('myTable').insertRow(0);var y=x.insertCell(0);var z=x.insertCell(1);y.innerHTML="New Cell 1";z.innerHTML="New Cell 2";}</script></head><body><center><table id="myTable" border="1"><tr id="tr2"><td>Row1 cell1</td><td>Row1 cell2</td></tr><tr id="tr2"><td>Row2 cell1</td><td>Row2 cell2</td></tr><tr id="tr2"><td>Row3 cell1</td><td>Row3 cell2</td></tr></table><br /><center><table border="0"><tr><th colspan="2">Table Controler</th></tr><tr><td><center><input type="button" onclick="createCaption()" value="Create caption"></td><td><center><input type="button" onclick="deleteCaption()"value="Delete caption" /></td></tr><tr><td colspan="2"><center><input type="button" onclick="getInnerHTML()"value="Alert innerHTML of table row" /></td></tr><tr><td><center><input type="button" onclick="insRow()" value="Insert row"></td><td><center><input type="button" onclick="delRow()"value="Delete first row"></td></tr><tr><td><center><input type="button" onclick="insCell()" value="Insert cell"></td><td><center><input type="button" onclick="delCell()" value="Delete cell"></td></tr></table></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.