From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- files/ko/glossary/jquery/index.html | 57 +++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 files/ko/glossary/jquery/index.html (limited to 'files/ko/glossary/jquery') diff --git a/files/ko/glossary/jquery/index.html b/files/ko/glossary/jquery/index.html new file mode 100644 index 0000000000..2d07404d9e --- /dev/null +++ b/files/ko/glossary/jquery/index.html @@ -0,0 +1,57 @@ +--- +title: jQuery +slug: Glossary/jQuery +tags: + - 자바스크립트 + - 제이쿼리 +translation_of: Glossary/jQuery +--- +

jQuery는 {{Glossary("DOM")}}조작의 단순화, {{Glossary("AJAX")}}호출, {{Glossary("Event")}}핸들링에 초점을 맞춘 {{Glossary("JavaScript")}} {{Glossary("Library")}}다.  자바스크립트 개발자가 자주 사용한다. 

+ +

jQuery는 element(s)에 이벤트를 할당하기 위해 $(selector).action() 포맷을 사용합니다. 더 자세히 설명하자면, $(selector)는 selector element(s)를 선택하기 위해서 jQuery를 호출하며, .action() 라 불리는 {{Glossary("API")}}이벤트에 할당합니다.

+ +
$(document).ready(function(){
+  alert("Hello World!");
+  $("#blackBox").hide();
+});
+ +

위의 코드는 아래의 코드와 같은 역할을 합니다:

+ +
window.onload = function() {
+  alert( "Hello World!" );
+  document.getElementById("blackBox").style.display = "none";
+};
+ +

jQuery 사용하기.

+ + + + + + + + + + + + + + + + +
npmbower (solo file)Google CDN
npm install jquerybower install https://code.jquery.com/jquery-3.2.1.min.jshttps://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
+ +

더보기

+ +

General knowledge

+ + + +

Technical information

+ + -- cgit v1.2.3-54-g00ecf