本文介绍了确定单击了哪个单元格以及列的标题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

一个名为tb的表有n行和m列,

表示每行有mtd标记。



当我点击一个td whick id调用''stdid''时,如何得到它''row'的第一个''td''和列'标题?

A table called "tb" has n rows and m columns,
means each row has m "td" mark.

How can I get it''s row''s first ''td'' and column''s header when I click one td whick id call ''stdid''?

推荐答案


var firstItem =




如果第一个TD本身不可点击,代码可以简化:


The code could be simplified if the first TD isn''t itself clickable:

var firstItem =


这篇关于确定单击了哪个单元格以及列的标题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 09:19