알이즈웰
jQuery 자식요소(find, children) 본문
/* Javascript Sample */ //아래와 같이 하면 자식요소가 딱 바로 아래 뎁스의 요소만 나온다 $("."+$("#tab").val()).children().each(function(){ //~~ }); //이렇게 하면 하위 요소 중에서 클래스명이 devValidation인 것을 모두 골라온닷 $("."+$("#tab").val()).find(".devValidation").each(function(){ console.log("find : "+$(this).prop('tagName').toLowerCase()); });
* 자식요소 가져오기
children : 자식요소만 가져옴(손자요소 가져오지 않음)
find : 자손 요소까지 모두 대상으로 해서 가져옴
[참고] 「웹 엔지니어의 교과서 」
'Programming > Front-End' 카테고리의 다른 글
jQuery.ajaxSettings.traditional = true; (0) | 2017.06.26 |
---|---|
jQuery 자식요소 seletor & li의 value 가져오기 (3) | 2017.06.06 |
jQuery selectBox에서 option text값 가져오기 (1) | 2017.05.16 |
JSTL 함수로 현재 시간 나타내기 (0) | 2017.05.11 |
Select Box의 값 중 특정 값 selected (0) | 2017.05.11 |
Comments