본문 바로가기

Javascript/Jquery

테이블에서 체크박스에서 체크된 특별 컬럼들 가져오기

var tds =$('.테이블클래스 tr:has(:checkbox:checked) .td에준클래스');

위와같이 하면 특정 td값들을 array로 가져올수 있다.