147.6.1.21 (토론) (→개요) |
Jmnote bot (토론 | 기여) 잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==)) |
||
44번째 줄: | 44번째 줄: | ||
*[[jQuery Mobile]] | *[[jQuery Mobile]] | ||
==참고 | ==참고== | ||
*http://stackoverflow.com/questions/441412/is-there-a-link-to-the-latest-jquery-library-on-google-apis | *http://stackoverflow.com/questions/441412/is-there-a-link-to-the-latest-jquery-library-on-google-apis | ||
* http://jquery.com/download/ | * http://jquery.com/download/ |
2017년 6월 27일 (화) 04:54 판
1 개요
- jQuery, jQuery UI, jQuery mobile 최신 버전 사용
- jQuery 최신 버전 확인
- jQuery 최신 버전 적용
- CDN에 있는 latest 버전을 사용하면 항상 최신 버전이 자동 적용되는 효과가 있다
2 jQuery
- 1.x 최신 버전
html
Copy
<script src="//code.jquery.com/jquery.min.js"></script>
html
Copy
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
3 jQuery UI
- 1.11.4 버전 (stable)
html
Copy
<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)
html
Copy
<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 버전
html
Copy
<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 참고
편집자 Jmnote 147.6.1.21 Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.