Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- git lab
- getModifierState
- createGlobalStyle
- There isn’t anything to compare
- ngrok실행
- github
- 컨디셔널 렌더링
- styled components
- nextjs .env
- API 토큰
- API token
- npm styled-reset
- react env
- react
- dart 변수
- icon
- react typescript
- SCSS
- next.js css
- nextjs
- typescript react
- CSS
- bootstrap
- nextjs 설치
- Git
- ngrok설치
- rewrites
- fetch
- input type=file
- github io
Archives
- Today
- Total
꾸준히 성장하는 개발자
j-query CDN 본문
jQuery는 자바스크립트의 라이브러리로 짧은 코드로 자바스크립트 코드를 효율적으로 작성할 수 있다.
CDN으로 시작하기
이중에 하나를 html head 태그 안에 삽입해주면 된다.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.4.min.js"></script> <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> |