"JQuery CDN, 최신 버전 사용"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
8번째 줄: 8번째 줄:
==jQuery==
==jQuery==
{{소스헤더|3.2.1 버전}}
{{소스헤더|3.2.1 버전}}
<source lang='html'>
<syntaxhighlight lang='html'>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</source>
</syntaxhighlight>
<source lang='html'>
<syntaxhighlight lang='html'>
<script src="//code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="//code.jquery.com/jquery-3.2.1.min.js"></script>
</source>
</syntaxhighlight>


{{소스헤더|1.11.1 버전 (1.x.x 의 마지막 버전)}}
{{소스헤더|1.11.1 버전 (1.x.x 의 마지막 버전)}}
<source lang='html'>
<syntaxhighlight lang='html'>
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/jquery.min.js"></script>
</source>
</syntaxhighlight>
<source lang='html'>
<syntaxhighlight lang='html'>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
</source>
</syntaxhighlight>


==jQuery UI==
==jQuery UI==
{{소스헤더|1.11.4 버전}}
{{소스헤더|1.11.4 버전}}
<source lang='html5'>
<syntaxhighlight lang='html5'>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
</source>
</syntaxhighlight>
{{소스헤더|git 버전 (unstable)}}
{{소스헤더|git 버전 (unstable)}}
<source lang='html5'>
<syntaxhighlight lang='html5'>
<link rel="stylesheet" href="//code.jquery.com/ui/jquery-ui-git.css">
<link rel="stylesheet" href="//code.jquery.com/ui/jquery-ui-git.css">
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/ui/jquery-ui-git.js"></script>
<script src="//code.jquery.com/ui/jquery-ui-git.js"></script>
</source>
</syntaxhighlight>


==jQuery Mobile==
==jQuery Mobile==
{{소스헤더|1.4.5 버전}}
{{소스헤더|1.4.5 버전}}
<source lang='html5'>
<syntaxhighlight lang='html5'>
<link rel="stylesheet" href="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<link rel="stylesheet" href="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script src="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:53 기준 최신판

1 개요[ | ]

jQuery, jQuery UI, jQuery mobile 최신 버전 사용
jQuery 최신 버전 확인
jQuery 최신 버전 적용
  • CDN에 있는 latest 버전을 사용하면 항상 최신 버전이 자동 적용되는 효과가 있다

2 jQuery[ | ]

3.2.1 버전
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="//code.jquery.com/jquery-3.2.1.min.js"></script>
1.11.1 버전 (1.x.x 의 마지막 버전)
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

3 jQuery UI[ | ]

1.11.4 버전
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
git 버전 (unstable)
<link rel="stylesheet" href="//code.jquery.com/ui/jquery-ui-git.css">
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/ui/jquery-ui-git.js"></script>

4 jQuery Mobile[ | ]

1.4.5 버전
<link rel="stylesheet" href="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>

5 같이 보기[ | ]

6 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}