알이즈웰

jQuery 자식요소(find, children) 본문

Programming/Front-End

jQuery 자식요소(find, children)

2017. 5. 29. 15:33
/* Javascript Sample */

//아래와 같이 하면 자식요소가 딱 바로 아래 뎁스의 요소만 나온다
$("."+$("#tab").val()).children().each(function(){
//~~
});
//이렇게 하면 하위 요소 중에서 클래스명이 devValidation인 것을 모두 골라온닷
$("."+$("#tab").val()).find(".devValidation").each(function(){
	console.log("find : "+$(this).prop('tagName').toLowerCase());
});




* 자식요소 가져오기


children : 자식요소만 가져옴(손자요소 가져오지 않음)

find : 자손 요소까지 모두 대상으로 해서 가져옴


[참고] 「웹 엔지니어의 교과서 」

Comments