반응형

jQuery 공식사이트

https://jquery.com/download/

 

Download jQuery | jQuery

link Downloading jQuery Compressed and uncompressed copies of jQuery files are available. The uncompressed file is best used during development or debugging; the compressed file saves bandwidth and improves performance in production. You can also download

jquery.com

 

기본코드

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
 
<div>
jquery.html
</div>
 
<-- 리모트 로드 -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<-- 파일 로드 -->
<--<script src="/js/jquery-3.5.1.min.js"></script>-->
<script>

//Document 로딩 완료 이벤트
$(document).ready(function() {
  //...
});
 
//Document 로딩 완료 이벤트 형식2
//$(function(){ //... });
</script>
 
</body>
</html>

참고) 편집기

 

1. Visual Studio Code

code.visualstudio.com/

 

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

 

2. 이클립스 + Tern Eclipse IDE(무료, 자바스크립트 코딩 시 DOM Api, jQuery 자동 완성 지원)

  • 이 후 설정을 바꿀 때는 프로젝트 우클릭 > Properties > Tern > Modules

반응형
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기