jQuery获取table当前所在行和列

$(".event-TDclick").click(function() {

    $(this).toggleClass("onClasss");
            
    var tdSeq = $(this).parent().find("td").index($(this)[0]);
    var trSeq = $(this).parent().parent().find("tr").index($(this).parent()[0]);
    alert("第" + (trSeq) + "行,第" + (tdSeq) + "列");

});

你可能感兴趣的:(jQuery获取table当前所在行和列)