获取表格单元格的值

<html>

<head>
<title>getTableContent</title>
<script type="text/javascript">
function forAlert()
{
var table= document.getElementsByTagName("table")[0];//获取第一个表格
for(var i=0;i<table.rows.length;i++)
{
for(var j=0;j<table.rows[i].cells.length;j++)
{
alert(table.rows[i].cells[j].innerHTML);
}
}
}
</script>

</head>

<body>
<table width="200" border="1" cellpadding="4" cellspacing="0">
        <tr>
                <td height="25">第一行</td>
        </tr>
        <tr>
                <td height="25">第二行</td>
        </tr>
        <tr>
                <td height="25">第三行</td>
        </tr>
        <tr>
                <td height="25">第四行</td>
        </tr>
</table>
<br>
<input type="button" value="alert" onclick="forAlert()"/>
</body>

</html>

你可能感兴趣的:(JavaScript,html,J#)