$(document).ready(function(){ $("button").click(function(){ $("p:nth-child(2)").addClass("intro"); }); });
버튼 클릭시 p태그중에 2번째 자식에게 intro 클래스명 부여
<style>
.intro {
font-size: 150%;
color: red;
}
</style>
intro 클래스는 폰트사이즈와 컬러 조정
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<p>This is another paragraph1111.</p>
p태그중에 2번째 자식이지만 h1태그까지 걸려서 This is a paragraph 텍스트가 조정된다.
p태그중에 2번째꺼로 하려면 nth-child(3)으로 해야 2번째 텍스트가 조정된다.
'JAVA > Jquery' 카테고리의 다른 글
Jquery url get parameter 가져오기 (0) | 2016.05.18 |
---|---|
Jquery Ajax 데이터 전송하기(한글깨짐방지) (0) | 2015.10.07 |
Jquery Submit 하기 (0) | 2015.09.22 |
Jquery select 제어 (0) | 2015.08.25 |
Jquery 새창 화면중앙에 띄우기 (0) | 2015.08.19 |