标签:
js的table表格对象的rows属性用法简单介绍:
rows作用正如其拼写一样,是用来获取一个行的集合,也就是表格中行的集合。
代码如下:
<!DOCTYPE html><html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>蚂蚁部落</title> <style type="text/css"> .table{ width:300px; height:100px; border:1px solid #ccc; border-collapse:collapse; } .table td,.table th { border:1px solid #ccc; padding:5px; } </style> <script type="text/javascript"> window.onload=function(){ var otb=document.getElementById("tb"); var oshow=document.getElementById("show"); var rows=otb.rows; oshow.innerHTML=rows.length; } </script> </head> <body> <div id="show"></div> <table class="table" id="tb"> <thead> <tr> <th>蚂蚁部落一</th> <th>蚂蚁部落二</th> </tr> </thead> <tbody> <tr> <td>javascript教程</td> <td>jQuery教程</td> </tr> <tr> <td>HTML教程</td> <td>div css教程</td> </tr> </tbody> </table> </body> </html>
上面的代码可以获取表格中行的数目,代码比较简单这里就不多介绍了。
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=14771
标签:
原文地址:http://www.cnblogs.com/xiaofinder/p/4803115.html