Home > Article > Web Front-end > How to get the row number and column number of the mouse click position in the table
How to get the row number and column number of the mouse click position in the table? This article mainly introduces jQuery's method of obtaining the row number and column number of the mouse click position in the table, involving jQuery event response and related operation skills for table elements. Friends who need it can refer to it. I hope it can help everyone.
The specific code is as follows:
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>www.jb51.net 鼠标点击位置行列号</title> </head> <body> <table class="mytable" border=1> <tr> <th style="width: 160px;">表头一</th> <th style="width: 160px;">表头二 </th> <th style="width: 160px;">表头三</th> <th style="width: 160px;">表头四</th> <th style="width: 160px;">表头五</th> </tr> <tr> <td>第一行第一列</td> <td>第一行第二列</td> <td>第一行第三列</td> <td>第一行第四列</td> <td>第一行第五列</td> </tr> <tr> <td>第二行第一列</td> <td>第二行第二列</td> <td>第二行第三列</td> <td>第二行第四列</td> <td>第二行第五列</td> </tr> <tr> <td>第三行第一列</td> <td>第三行第二列</td> <td>第三行第三列</td> <td>第三行第四列</td> <td>第三行第五列</td> </tr> <tr> <td>第四行第一列</td> <td>第四行第二列</td> <td>第四行第三列</td> <td>第四行第四列</td> <td>第四行第五列</td> </tr> </table> <script src="jquery-1.7.2.min.js"></script> <script> $(document).ready(function(){ $(".mytable td").click(function(){ var tdSeq = $(this).parent().find("td").index($(this)[0]); var trSeq = $(this).parent().parent().find("tr").index($(this).parent()[0]); alert("第" + (trSeq + 1) + "行,第" + (tdSeq + 1) + "列"); }); }) </script> </body> </html>
Related recommendations:
Detailed explanation of jQuery getting the value of a certain column of Table
How to get the value of a certain column in the table using JavaScript
Js code to get the value of the current tr row of the table_javascript skills
The above is the detailed content of How to get the row number and column number of the mouse click position in the table. For more information, please follow other related articles on the PHP Chinese website!