ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [JS] jQuery 기능정리
    웹/JavaScript 2022. 1. 16. 23:52
    1. Selecte
    Syntax Description Example
    $("*") 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  

    2. Events

    Mouse Events Keyboard Events Form Events Document/Window Events
    click keypress submit load
    dblclick keydown change resize
    mouseenter //커서 대면 keyup focus scroll
    mouseleave   blur unload

     

    $(document).ready() 

    The $(document).ready() method allows us to execute a function when the document is fully loaded. This event is already explained in the jQuery Syntax chapter.

     

    3. Animations

     

    $(selector).animate({params},speed,callback);

     

    ' > JavaScript' 카테고리의 다른 글

    [JS] JavaScript 기능 정리  (1) 2022.01.09

    댓글

Designed by Tistory.