如何使用jQuery获取单击的表格单元格的行和列号,即$("td").onClick(function(event){ var row = ... var col = ...});
3 回答
30秒到达战场
TA贡献1828条经验 获得超6个赞
$('td').click(function() {
var myCol = $(this).index();
var $tr = $(this).closest('tr');
var myRow = $tr.index();
});
偶然的你
TA贡献1841条经验 获得超3个赞
点击可获取COLUMN INDEX:
$(this).closest("td").index();
点击可获得ROW INDEX:
$(this).closest("tr").index();
慕工程0101907
TA贡献1887条经验 获得超5个赞
您可以在给定的上下文中使用Core / index函数,例如,可以检查TD的父TR中的索引以获取列号,还可以检查Table上的TR索引以获取行号:
$('td').click(function(){
var col = $(this).parent().children().index($(this));
var row = $(this).parent().parent().children().index($(this).parent());
alert('Row: ' + row + ', Column: ' + col);
});
在此处查看运行示例。
- 3 回答
- 0 关注
- 444 浏览
添加回答
举报
0/150
提交
取消