- var myRows = $('.table_gray tbody tr').click(
- function() {
- index = $(this).index() ;
- //利用jquery提供的取序号的方法
- index1 = myRows.index(this);
- //TR的属性,其序号计算范围在tbody内,与上一方法结果一致
- index2 = this.sectionRowIndex;
- //TR的属性,其序号计算范围包括所有的TR
- index3 = this.rowIndex;
- }
- }
- );
转载于:https://www.cnblogs.com/tabcdt/archive/2012/11/09/2762301.html