반응형

Front/JQuery 3

[JQuery] closest(), parant(), siblings(), children()

JQuery에는 선택함수가 여러개 있다. closest(), parant(), siblings(), children()가 사용되는 방법에 대해 알아볼것이다. $(this)는 #me를 기준으로 하겠다. 1.parent() $(document).on("click","#me", function(){ $(this).parent().css("background-color", "red"); }); ==> grandmom, mom 의 div 색이 red로 변경 부모들을 호출한다. 만약 grandmom만 호출하고자 한다면 $(this).parent().parent()로 호출하는 방법이 있다. 2.closest() $(document).on("click","#me",function(){ $(this).closest()...

Front/JQuery 2022.08.19

find/ td:eq(0)/ not /closest/ toFixed 요소 찾기

find= 요소를 찾는다. not=요소를 제외한다. val=값을 넣거나 찾기 closest= 가장 가까운 요소를 찾기(해당 라인 또는 같은 라인에 있는 정보를 찾고 싶을때 사용한다.) find("td:wq(0)") -0번째 요소를 찾는다. not("td:wq(0)") -0번째 요소를 제외한다. find("input")val("벨류추가"); -input태그의 value값을 "벨류추가"로 바꾼다. .toFixed(1) Number 인스턴스의 소수 부분 자릿수를 전달받은 값으로 고정한 후 , 그 값을 문자열로 반환한다. -소수점 첫자리까지 나타낸다. $('#parent li:last-child').closest('ul').find('li').length; id가 parent인곳에서 마지막 li인 요소의 상위 ..

Front/JQuery 2022.08.18
반응형