DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> js動態修改表格行colspan列跨度的方法
js動態修改表格行colspan列跨度的方法
編輯:JavaScript綜合知識     

 這篇文章主要介紹了js動態修改表格行colspan列跨度的方法,實例分析了javascript動態修改html中table屬性的技巧,具有一定參考借鑒價值,需要的朋友可以參考下

   

本文實例講述了js動態修改表格行colspan列跨度的方法。分享給大家供大家參考。具體如下:

? 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 <!DOCTYPE html> <html> <head> <script> function setColSpan() { var x=document.getElementById('myTable').rows[0].cells; x[0].colSpan="2"; x[1].colSpan="6"; } </script> </head> <body> <table id="myTable" border="1"> <tr> <td colspan="4">cell 1</td> <td colspan="4">cell 2</td> </tr> <tr> <td>cell 3</td> <td>cell 4</td> <td>cell 5</td> <td>cell 6</td> <td>cell 7</td> <td>cell 8</td> <td>cell 9</td> <td>cell 10</td> </tr> </table> <form> <input type="button" onclick="setColSpan()" value="Change colspan"> </form> </body> </html>

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

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved