JQuery란? jQuery.com
javascript framework 중 가장 많이 사용되는 프레임워크
jQuery의 특징
* Decoupling Script (HTML/CSS/JS)* easy
* Ajax 지원
* Dom 처리
* Event 처리 일관성
jQuery 사용 Notation
window.jQuery = window.$ = jQuery = $
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | //1.javascript 이용 window.onload = function(){ alert("element파싱, load 완료시점 alert 창 open\n\nwindow.onload 사용"); } //2-1. jQuery 이용 $(document).ready(function(){ alert("element파싱, load 완료시점 alert 창 open\n\njQuery $(document).ready() 사용"); }) //2-2. jQuery 이용 $(function(){ alert("element파싱, load 완료시점 alert 창 open\n\njQuery $() 사용"); }) ////////////////// window.jQuery = window.$ = jQuery = $ ///////////////// window.jQuery(function(){ window.$(function(){ jQuery(function(){ $(function(){ | cs |
반응형
'Frontend > jQuery' 카테고리의 다른 글
[jQuery/Bootstrap] 동적으로 생성한 요소에 tooltip 바인딩 시키기 (0) | 2018.07.23 |
---|---|
화면 내리면 최상단으로 이동할 아이콘 뜨고, 맨 위에 있으면 아이콘 사라지게 하기 (0) | 2018.07.13 |
[jQuery] 동적으로 추가한 요소에 이벤트 걸기 (event binding) (0) | 2018.07.10 |
jQuery에서 지원하는 Ajax 사용법 (0) | 2018.05.23 |
jQuery Selector (0) | 2018.05.14 |
댓글