티스토리 뷰

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 앞에 나타나게 했으므로 위와 같은 결과 표시합니다






댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday