标签:io color ar java sp div on cti bs
HTML DOM rowIndex属性
功能:返回表格中行的序号。
语法:object.rowIndex
说明:该属性只读。
rowIndex用于判断当前单元格所处行的索引(从0开始)
实例1
获取指定行在表格中的序号。
通常我们可以把他们的事件写在TD里,因为rowIndex属性应该是属于<tr>标记,因此在判断rowIndex需要访问父节点,
<script type="text/javascript">
function demo(elem){
var tr = elem.parentNode;
alert(tr.rowIndex);
}
</script>
<table>
<tr>
<td></td>
<td onclick="demo(this);">edit</td>
</tr>
<tr>
<td></td>
<td onclick="demo(this);">edit</td>
</tr>
</table>
cellIndex属性
功能:返回单元格在行中的位置。
语法:object.cellIndex
说明:该属性只读。
rowIndex属性的值是行在表格中总的位置,包含了thead、tbody、tfoot各个区域。
HTML中Table的两个属性rowIndex与cellIndex
标签:io color ar java sp div on cti bs
原文地址:http://www.cnblogs.com/xiaosen992608/p/4076238.html