我有一个像这样的三行 GridView
<tr>
<th>SlNo</th>
</tr>
<tr>
<td>1</td>
</tr>
<tr>
<td>2</td>
</tr>
我有以下代码遍历行
var GridViewRow=GridView.getElementsByTagName('tr')
这里的行长是 3。
我遍历了GridViewRow
使用 for 循环。这里我将如何获取当前元素的标签名称,即 ( th or td
)。
如果标记名是“ TH
”,它应该返回,如果是“ TD
”,它应该取 TD 的值。