카테고리 없음
제이쿼리) tr로 td 접근하기 3가지 방법
이브마드
2024. 12. 12. 10:04
const authorId = $(this).children().eq(0).text();
const authorName = $(this).find('td').eq(1).text();
const description = $(this).find('td:nth-child(3)').text();