티스토리 뷰
1. after() ,before() - 역할
$(앞).after(뒤) - 뒤에 있는 것을 앞의 뒷부분에 추가
$(앞).before(뒤) - 뒤에 있는 것을 앞의 앞부분에 추가
2. after() - 예제
◈ 코드
1 2 3 4 5 6 7 8 9 10 11 12 13 | <script src="https://code.jquery.com/jquery-1.11.3.js" type="text/javascript"></script> <script> $(document).ready(function () { $('h1').after('<h3>test3</h3>'); }); </script> <body> <h1>test1</h1> <h2>test2</h2> </body> |
◈ 결과화면
◈ 결과코드
1 2 3 4 5 | <body> <h1>test1</h1> <h3>test3</h3> <h2>test2</h2> </body> |
◈ 설명
test3 이라는 것을 h1 뒤에 붙이는 것으로 위와 같은 결과 화면 표시합니다
3. before() - 예제
◈ 코드
1 2 3 4 5 6 7 8 9 10 11 12 13 | <script src="https://code.jquery.com/jquery-1.11.3.js" type="text/javascript"></script> <script> $(document).ready(function () { $('h1').before('<h3>test3</h3>'); }); </script> <body> <h1>test1</h1> <h2>test2</h2> </body> |
◈ 결과화면
◈ 결과코드
1 2 3 4 5 | <body> <h3>test3</h3> <h1>test1</h1> <h2>test2</h2> </body> |
◈ 설명
test3 이라는 것을 h1 앞에 나타나게 했으므로 위와 같은 결과 표시합니다
'[개발]프로그래밍 > jquery' 카테고리의 다른 글
[jquery] hover() - 마우스가 올라왔을 때,떠났을 때 (0) | 2016.10.17 |
---|---|
[jquery] clone - 객체 복제 (0) | 2016.10.14 |
[jqeury] append,prepend - 객체 삽입 (0) | 2016.10.14 |
[jquery] remove() , empty() - 객체 제거 및 비움 (0) | 2016.10.13 |
[jquery] 객체 추가 - html()를 활용 (0) | 2016.10.13 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday