사용자 도구

사이트 도구


study:jquery

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
study:jquery [2020/08/11 06:59] – [jQuery] taekgustudy:jquery [2025/04/15 10:05] (현재) – 바깥 편집 127.0.0.1
줄 1: 줄 1:
 ====== jQuery ====== ====== jQuery ======
 +
 +[[study:jquery:download|Excel Download]]
 +
 ===== fullCalendar ===== ===== fullCalendar =====
-[https://saintsilver.github.io/FullCalendar-Example|FullCalendar-Example Demo] +[[https://saintsilver.github.io/FullCalendar-Example|FullCalendar-Example Demo]
-Git [https://github.com/SaintSilver/FullCalendar-Example.git]+[[https://github.com/SaintSilver/FullCalendar-Example.git|FullCalendar-Example]] 
 + 
 +===== Tree Structure ===== 
 +[[https://github.com/mar10/fancytree/|Fancytree]] - [[study:jquery:fancytree|Fancytree이용하려면]] 
 +  * [[https://github.com/mar10/dynatree|Dynatree - old version]]
 ==== DOM ready ==== ==== DOM ready ====
 <code javascript> <code javascript>
줄 40: 줄 47:
 $( "ul li" ).filter( ".current" ); // unordered list items with class of current $( "ul li" ).filter( ".current" ); // unordered list items with class of current
 $( "ul li" ).first(); // just the first unordered list item $( "ul li" ).first(); // just the first unordered list item
-$( "ul li" ).eq( 5 ); +$( "ul li" ).eq( 5 ); 
 +$("#id1, #id2").text(); 
 +$("#select_id option:selected").text(); 
 +$("input[id^='boh_ilsu']").each(function(idx,element){})
 </code> </code>
 ==== Selecting Form Elements ==== ==== Selecting Form Elements ====
줄 54: 줄 64:
 <code javascript> <code javascript>
 $( "form :input" ); $( "form :input" );
 +
 +$('input[id$="_ym"]').blur();  // id가 '_ym'으로 끝나는 것을 선택
 </code> </code>
 ==== Attributes ==== ==== Attributes ====
study/jquery.1597129148.txt.gz · 마지막으로 수정됨: 2025/04/15 10:05 (바깥 편집)