JS/jQuery3 .addClass() //제이쿼리(jQuery) doctype html> first demo Hello 1 Hello 2 Hello 3 Hello 4 $( "ul li" ).addClass('selectClass'); .addClass() 메소드는 class를 추가한다. class가 이미 있을 경우 기존의 class가 삭제되지 않는다. 2020. 8. 1. .first() //제이쿼리(jQuery) doctype html> first demo Hello jQuery!! 1 Hello jQuery!! 2 Hello jQuery!! 3 Hello jQuery!! 4 $( "div p" ).first().css('background-color', 'yellow'); .first() 메소드는 첫 번째 요소를 선택한다. 2020. 8. 1. .find() //제이쿼리(jQuery) doctype html> find demo Hello World Hello jquery A a-1 a-2 a-3 B C $( "p" ).find( "span" ).css( "background-color", "yellow" ); $( "div.container" ).find( ".box1" ).css( "background-color", "red" ); $( "div.container" ).find( ".box2" ).css( "background-color", "yellow" ); find()메소드는 하위 태그를 선택한다. 2020. 8. 1. 이전 1 다음