제이쿼리 테이블 위치알아내기

승짱·2022년 6월 28일
0
$('td').click(function(){

  var col = $(this).parent().children().index($(this));

  var row = $(this).parent().parent().children().index($(this).parent());

  alert('Row: ' + row + ', Column: ' + col);

});
profile
Welcome to my memo

0개의 댓글