공부하는 블로그

(jquery) 제이쿼리 예제파일 1 본문

Develop/jQuery

(jquery) 제이쿼리 예제파일 1

모아&모지리 2017. 10. 11. 13:05
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
  <head>
    <title>jQuery Adventures</title>
 
  </head>
  <body>
    <h1>Where do you want to go?</h1>
    <p>Plan your next adventures</p>
  </body>
</html>
 
cs



head와 /head 사이에

1
  <script src="./jquery-3.2.1.min.js" charset="utf-8"></script>
cs


1
2
3
4
5
6
7
8
  <script type="text/javascript">
        $(document).ready(function() {
 
                
    
        });
 
    </script>
cs


추가한다.




      $(".comments > li:nth-child(2)").remove();
      $(".commnets > li:eq(1)").remove();