제이쿼리 선택자

  • element Selector

    • $(document).ready(function(){
        $("button").click(function(){
            $("p").hide();
        });
      });
  • #id Selector

    • $(document).ready(function(){
        $("button").click(function(){
            $("#test").hide();
        });
      });
  • .class Selector

    • $(document).ready(function(){
        $("button").click(function(){
            $(".test").hide();
        });
      });
  • More jQuery Selectors

    • $("*")  Selects all elements    
      $(this) Selects the current HTML element
      $("p.intro") Selects all <p> elements with class="intro"
      $("p:first") Selects the first <p> element
      $("ul li:first") Selects the first <li> element of the first <ul>
      $("ul li:first-child") Selects the first <li> element of every <ul>
      $("[href]") Selects all elements with an href attribute
      $("a[target='_blank']") Selects all <a> elements with a target attribute value equal to "_blank"
      $("a[target!='_blank']") Selects all <a> elements with a target attribute value NOT equal to "_blank"
      $(":button") Selects all <button> elements and <input> elements of type="button"
      $("tr:even") Selects all even <tr> elements
      $("tr:odd") Selects all odd <tr> elements


'jquery' 카테고리의 다른 글

<tr>에서 get value() 벨류값 가져오기  (0) 2019.05.22
제이쿼리 소개  (0) 2018.10.14
jquery Json date read  (0) 2018.10.14
jquery selector 선택자  (0) 2018.10.14

+ Recent posts