<table border=1>
  <tr>
    <td><input onclick="foo(this)"></td>
    <td><input onclick="foo(this)"></td>
  </tr>
  <tr>
    <td><input onclick="foo(this)"></td>
    <td><input onclick="foo(this)"></td>
  </tr>
</table>
  <script type="text/javascript">
  //<![CDATA[
var foo=function (o) {
while(o.tagName.toLowerCase()!="tr")
o=o.parentNode;
alert('第'+o.rowIndex+'行');
}
  //]]>
  </script>