.after()
- .after()는 선택한 요소 뒤에 새 요소를 추가하거나, 다른 곳에 있는 요소를 이동시킬 수 있다.
문법
.after(content [, content])
예제1
$('h1').after('<p>Hello</p>'); -> h1요소 뒤에 <p>Hello</p> 요소 추가
$('h1.a').after('p.b'); -> 클래스 값으로 a를 갖는 h1 요소 뒤에 클래스 값으로 b를 갖는 p요소를 이동시킨다.
예제2
<!DOCTYPE HTML>
<html lang ="UTF-8">
<head>
<meta charset="UTF-8">
<title>오오오</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-3.3.1.min.js"></script>
<script tpye="text/javascript">
$(function(){
$('h1').after('<p>안녕<p>');
})
</script>
</haed>
<body>
<h1>안녕하세용</h1>
</body>
</html>
예제3
<!doctype html>
<html lang="UTF-8">
<head>
<meta charset="utf-8">
<title>jQuery</title>
<script type="text/javascript" src="//code.jquery.com/jquery-3.3.1.min.js"></script>
<script type="text/javascript">
$( document ).ready( function() {
$( 'h1' ).after( $( 'p' ) );
} );
</script>
</head>
<body>
<p>으응?</p>
<h1>그렇구나</h1>
</body>
</html>