블로그 이미지
래머
오늘도 열심히 개발하는 개발자입니다.

calendar

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

Notice

'JQuery'에 해당되는 글 5

  1. 2016.03.14 jQuery Event Methods(JQuery 이벤트 메소드들)2
  2. 2016.03.14 jQuery Selectors(JQuery선택자)
  3. 2016.03.14 jQuery Syntax(Jquery 문법)
  4. 2016.03.11 JQuery 시작하기
  5. 2016.03.11 JQuery 소개
2016. 3. 14. 15:26 JQuery

jQuery Event Methods(JQuery 이벤트 메소드들)


jQuery is tailor-made to respond to events in an HTML page.

JQuery는 HTML페이지의 이벤트들을 수신하는형태로 디지인되었다.


What are Events?(이벤트는 무엇인가?)

All the different visitor's actions that a web page can respond to are called events.

An event represents the precise moment when something happens.

Examples:

웹페이지가 응답할 수 있는 모든 다른 방문자들의 행동들이 이벤트라 불려진다.

이벤트는 특정한 순간에 무언가 일어났다는것을 나타낸다.

예제 : 

  • moving a mouse over an element
  • selecting a radio button
  • clicking on an element
  • 요소위에 마우스가 움직임
  • 라디오 버튼이 선택됨
  • 요소가 클릭됨

The term "fires/fired" is often used with events. Example: "The keypress event is fired, the moment you press a key".

Here are some common DOM events:

조건 "fires/fired"는 종종이벤트오 함께 사용된다. 예 : "당신이 키를 누를때 키눌림 이벤트가 발생했다". 

다음은 몇가지의 공통적인 DOM이벤트들이다.

Mouse EventsKeyboard EventsForm EventsDocument/Window Events
clickkeypresssubmitload
dblclickkeydownchangeresize
mouseenterkeyupfocusscroll
mouseleave blurunload

jQuery Syntax For Event Methods(이벤트 메소드들을 위한 JQuery문법)

In jQuery, most DOM events have an equivalent jQuery method.

To assign a click event to all paragraphs on a page, you can do this:

JQuery에서, 대부분의 DOM이벤트들은 동일한 JQuery메소드들을 가진다.

클릭이벤트를 페이지내의 모든 절에 할당하기 위해, 다음과 같이 할 수 있다:

$("p").click();

The next step is to define what should happen when the event fires. You must pass a function to the event:

음단계는 이벤트가 발생할때 무슨일이 생기는지 정의하는것이다. 당신은 이벤트에 함수를 전달 할 수 있다 : 

$("p").click(function(){
  // action goes here!!
});

Commonly Used jQuery Event Methods(공통적으로 사용된 JQuery이벤트 메소드들)

$(document).ready()

The $(document).ready() method allows us to execute a function when the document is fully loaded. This event is already explained in the jQuery Syntax chapter.

$(document).ready() 메소드는 우리에게 문서가 완전히 로드될때 함수가 실행될 수 있게한다. 이 이벤트는 JQuery문법 장에서 이미 설명했다.


click()

The click() method attaches an event handler function to an HTML element.

The function is executed when the user clicks on the HTML element.

The following example says: When a click event fires on a <p> element; hide the current <p> element:

click()메소드는 HTML요소에 이벤트 핸들러 함수를 결합한다.

함수는 사용자가 HTML요소를 클릭할때 실행된다.

다음 예제는 :  <p>요소에 클릭이벤트가 발생할때, 현재의 <p>요소를 숨긴다 : 


Example

$("p").click(function(){
    $(this).hide();
});
Try it yourself »

dblclick()

The dblclick() method attaches an event handler function to an HTML element.

The function is executed when the user double-clicks on the HTML element:


dblclick() 메소드는 HTML요소에 이벤트 핸들러를 결합한다. 이함수는 HTML요소가 더블클릭될때 실행된다.

Example

$("p").dblclick(function(){
    $(this).hide();
});
Try it yourself »

mouseenter()

The mouseenter() method attaches an event handler function to an HTML element.

The function is executed when the mouse pointer enters the HTML element:

mouseenter() 메소드는 HTML요소에이벤트 핸들러 함수를 결합한다.

함수는 HTML요소에 마우스 포인터가 위치할때 실행된다.

Example

$("#p1").mouseenter(function(){
    alert("You entered p1!");
});
Try it yourself »

mouseleave()

The mouseleave() method attaches an event handler function to an HTML element.

The function is executed when the mouse pointer leaves the HTML element:

mouseleave()메소드는 HTML요소에 이벤트 핸들러를 결합한다.

함수는 HTML요소에 마우스 포인터가 떠날때 실행된다.

Example

$("#p1").mouseleave(function(){
    alert("Bye! You now leave p1!");
});
Try it yourself »

mousedown()

The mousedown() method attaches an event handler function to an HTML element.

The function is executed, when the left, middle or right mouse button is pressed down, while the mouse is over the HTML element:

mousedown() 메소드는 HTML요소에 이벤트 핸들러를 결합한다.

함수는 왼쪽, 중앙, 오른쪽 마우스 버튼이 눌려진상태에서 HTML요소위에 있을때 발생한다.

Example

$("#p1").mousedown(function(){
    alert("Mouse down over p1!");
});
Try it yourself »

mouseup()

The mouseup() method attaches an event handler function to an HTML element.

The function is executed, when the left, middle or right mouse button is released, while the mouse is over the HTML element:

mouseup()는 HTML요소에 이벤트 핸들러를 결합한다. 함수는 마우스의 커서가 HTML요소 위에 있는상태에서 왼쪽, 중앙, 오른쪽 버튼이 눌림해제될때 실행된다.

Example

$("#p1").mouseup(function(){
    alert("Mouse up over p1!");
});
Try it yourself »

hover()

The hover() method takes two functions and is a combination of the mouseenter() and mouseleave() methods.

The first function is executed when the mouse enters the HTML element, and the second function is executed when the mouse leaves the HTML element:

hover() 메소드는 두개의 함수 mouseenter()와 mouseleave()메소드들의 결합형이다.

첫번째 함수는 HTML요소에 마우스가 위치할때 실행되고, 두번째는 마우스가 요소 위에서 떠날때 실행된다:

Example

$("#p1").hover(function(){
    alert("You entered p1!");
},
function(){
    alert("Bye! You now leave p1!");
});
Try it yourself »

focus()

The focus() method attaches an event handler function to an HTML form field.

The function is executed when the form field gets focus:

focus()메소드는 HTML폼 필드에 이벤트 핸들러를 결합한다.

함수는 폼필드가 포커스를 얻을때 실행된다.

Example

$("input").focus(function(){
    $(this).css("background-color", "#cccccc");
});
Try it yourself »

blur()

The blur() method attaches an event handler function to an HTML form field.

The function is executed when the form field loses focus:

blur() 메소드는 HTML폼필드에 이벤트 핸들러를 결합한다.

함수는 폴필드가 포커스를 잃을때 실행된다.

Example

$("input").blur(function(){
    $(this).css("background-color", "#ffffff");
});
Try it yourself »

The on() Method

The on() method attaches one or more event handlers for the selected elements.

Attach a click event to a <p> element:

on()메소드는 선택된 요소들에 하나또는 그이상의 이벤트 핸드러를 결합시킨다.

<p>요소에 클릭이벤트를 결합시키기 : 

Example

$("p").on("click", function(){
    $(this).hide();
});
Try it yourself »

Attach multiple event handlers to a <p> element:

<p>요소에 다중 이벤트 핸들러 결합하기:

Example

$("p").on({
    mouseenter: function(){
        $(this).css("background-color", "lightgray");
    }, 
    mouseleave: function(){
        $(this).css("background-color", "lightblue");
    }, 
    click: function(){
        $(this).css("background-color", "yellow");
    } 
});
Try it yourself »

Test Yourself with Exercises!

Exercise 1 »  Exercise 2 »  Exercise 3 »  Exercise 4 »  Exercise 5 »

'JQuery' 카테고리의 다른 글

jQuery Selectors(JQuery선택자)  (0) 2016.03.14
jQuery Syntax(Jquery 문법)  (0) 2016.03.14
JQuery 시작하기  (0) 2016.03.11
JQuery 소개  (0) 2016.03.11
posted by 래머
2016. 3. 14. 14:55 JQuery

jQuery Selectors(JQuery 선택자)


jQuery selectors are one of the most important parts of the jQuery library.

JQuery 선택자들은 JQuery라이브러리의 가장 중요한 부분중 하나이다.


jQuery Selectors

jQuery selectors allow you to select and manipulate HTML element(s).

jQuery selectors are used to "find" (or select) HTML elements based on their id, classes, types, attributes, values of attributes and much more. It's based on the existing CSS Selectors, and in addition, it has some own custom selectors.

All selectors in jQuery start with the dollar sign and parentheses: $().

JQuery선택자들은 당신에게 HTML요소들을 선택하고 조작할 수 있게 한다.

JQuery선택자들은 id, 클래스, 속성, 속성의 값이나 더많은 항목들로부터 HTML요소들을 찾는(또는 선택하는)데 사용된다.

이것은 기존의 CSS 선택자를 기반으로 하며, 추가적으로, 약간의 자체적인 선택자를 가지고 있다.

JQuery의 모든 선택자들은 달러 신호와 괄호로 시작된다 : $()


The element Selector(요소 선택자)

The jQuery element selector selects elements based on the element name.

You can select all <p> elements on a page like this:

JQuery요소 선택자는 요소의 이름에 기반하여 요소를 선택한다.

당신은 페이지모든 <P>요소들을 다음과 같이 선택할 수 있다 : 

$("p")

Example(예)

When a user clicks on a button, all <p> elements will be hidden:

유저가 버튼을 클릭할때, 모든 <P>요소들이 숨겨질것이다 : 

Example

$(document).ready(function(){
    $("button").click(function(){
        $("p").hide();
    });
});
Try it yourself »

The #id Selector(#id 선택자)

The jQuery #id selector uses the id attribute of an HTML tag to find the specific element.

An id should be unique within a page, so you should use the #id selector when you want to find a single, unique element.

JQuery의 #id선택자는 특정한 요소를 찾기 위해 HTML태그의 id속성을 사용한다.

id는 대개 페이지안에서 유일한것이므로,  당신은 #id선택자를 페이지내에서 유일한 단일요소를 찾기 원할때 사용할 수 있을것이다.


To find an element with a specific id, write a hash character, followed by the id of the HTML element:

특정 ID와 함께 요소를 찾기 위해, 해시문자를 쓰고, 이어서 HTML요소의 ID를 쓴다.

$("#test")

Example(예)

When a user clicks on a button, the element with id="test" will be hidden:

유저가 버튼을 클릭할때, 요소의 id가 "test"인것이 숨겨질것이다.

Example

$(document).ready(function(){
    $("button").click(function(){
        $("#test").hide();
    });
});
Try it yourself »

The .class Selector(.class 선택자)

The jQuery class selector finds elements with a specific class.

To find elements with a specific class, write a period character, followed by the name of the class:

JQuery 클래스 선택자는 특정 클래스이름을 갖는 요소들을 찾는다.

특정클래스를 찾기 위해, 마침표를 쓰고, 이어서 클래스 이름을 적는다.

$(".test")

Example(예)

When a user clicks on a button, the elements with class="test" will be hidden:

유저가 버튼을 클릭ㅎㄹ때, 클래스 이름이 "test"인 요소들을 숨긴다 : 

Example

$(document).ready(function(){
    $("button").click(function(){
        $(".test").hide();
    });
});
Try it yourself »

More Examples of jQuery Selectors(JQuery선택자들에 대한 더많은 예제)

SyntaxDescriptionExample
$("*")Selects all elements(모든요소선택)Try it
$(this)

Selects the current HTML element(현재 HTML요소를 선택)

Try it
$("p.intro")

Selects all <p> elements with class="intro"(모든 p요소들중 클래스가 intro인것들 선택)

Try it
$("p:first")

Selects the first <p> element(첫번째 <p>요소 선택)

Try it
$("ul li:first")

Selects the first <li> element of the first <ul>(첫번째 <ul>요소의 첫번째 <li>선택)

Try it
$("ul li:first-child")

Selects the first <li> element of every <ul>(모든 <ul>요소들의 첫번째 <li>선택)

Try it
$("[href]")Selects all elements with an href attribute(href속성의 요소들 선택)Try it
$("a[target='_blank']")

Selects all <a> elements with a target attribute value equal to "_blank"(타겟속성이 "_blank"인모든 <a>요소들 선택

Try it
$("a[target!='_blank']")Selects all <a> elements with a target attribute value NOT equal to "_blank"Try it
$(":button")Selects all <button> elements and <input> elements of type="button"Try it
$("tr:even")Selects all even <tr> elementsTry it
$("tr:odd")Selects all odd <tr> elementsTry it

Use our jQuery Selector Tester to demonstrate the different selectors.

For a complete reference of all the jQuery selectors, please go to our jQuery Selectors Reference.

다른 선택자들의 차이점들에 대해 실습해보기 위해 우리의 JQuery선택자 테스터를 사용해라.

JQuery선택자들의 완전한 참조를 위해 우리의 JQuery선택자 참조로 이동하라.


Functions In a Separate File(분리된 파일에서의 함수들)

If your website contains a lot of pages, and you want your jQuery functions to be easy to maintain, you can put your jQuery functions in a separate .js file.

When we demonstrate jQuery in this tutorial, the functions are added directly into the <head> section. However, sometimes it is preferable to place them in a separate file, like this (use the src attribute to refer to the .js file):

만일 당신의 사이트가 많은 페이지들을 담고 있고, 당신이 JQuery 함수들이 쉽게 관리되기를 원한다면, 당신은 JQuery 함수들을 분리된 .js파일에 놓을 수 있다.

우리는 이튜토리얼에서 JQuery실습을 할때, 함수들을 <head>섹션 내부에 추가했었다. 하지만, 때로는 다음과 같이 그것을 분리된 위치에 놓는것이 유용할때가 있다(.js 파일을 참조하기위해 src속성을 사용한다): 

Example

<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js">
</script>
<script src="my_jquery_functions.js"></script>
</head>


'JQuery' 카테고리의 다른 글

jQuery Event Methods(JQuery 이벤트 메소드들)  (2) 2016.03.14
jQuery Syntax(Jquery 문법)  (0) 2016.03.14
JQuery 시작하기  (0) 2016.03.11
JQuery 소개  (0) 2016.03.11
posted by 래머
2016. 3. 14. 14:32 JQuery

jQuery Syntax(JQuery 문법)


With jQuery you select (query) HTML elements and perform "actions" on them.

JQuery에서 당신은 HTML요소들을 선택하고 그들에게 액션을 수행한다.


jQuery Syntax

The jQuery syntax is tailor-made for selecting HTML elements and performing some action on the element(s).

Basic syntax is: $(selector).action()

JQuery의 문법은 HTML의 요소를 선택하고 요소로부터 무언가 액션을 수행하는데 맞춰진 형태이다.


기본문법은 다음과 같다 : $(선택자).action()

  • A $ sign to define/access jQuery
  • A (selector) to "query (or find)" HTML elements
  • A jQuery action() to be performed on the element(s)
  • $는 JQuery에 대한 선언/접근을 위한 신호이다.
  • (선택자)는 HTML요소를 조회(찾기)위한것이다.
  • JQuery Action()은 요소에 대한 실행이 될것이다.

Examples():

$(this).hide() - hides the current element.(현재 요소를 숨김)

$("p").hide() - hides all <p> elements.(모든 P요소를 숨김)

$(".test").hide() - hides all elements with class="test".(클래스가 "test"인 모든 요소를 숨김)

$("#test").hide() - hides the element with id="test".(id가 "test"인 요소를 숨김)

Note

Are you familiar with CSS selectors?(CSS 선택자와 유사하다 생각되지 않는가?)

jQuery uses CSS syntax to select elements. You will learn more about the selector syntax in the next chapter of this tutorial.

JQuery는 요소 선택에 CSS 문법을 사용한다. 튜토리얼의 다음장에서 선택자의 문법에 대해서 배우게 될것이다.


The Document Ready Event(문서 준비됨 이벤트)

You might have noticed that all jQuery methods in our examples, are inside a document ready event:

당신은 우리 예제들의 모든 JQuery메소드들이 document ready 이벤트 내부에 있는것을 볼수 있다.

$(document).ready(function(){

   // jQuery methods go here...

});

This is to prevent any jQuery code from running before the document is finished loading (is ready).

이것은 어떤 JQuery코드가 문서의 로딩이 끝나기(준비되기전) 전에 실행되는것을 피한다.

It is good practice to wait for the document to be fully loaded and ready before working with it. This also allows you to have your JavaScript code before the body of your document, in the head section.

문서가 완전히 로드될떄까지 기다렸다가 무언가 작업을 하는것이 좋다. 이것은 또한 당신의 자바스크립트 코드가 문서의 바디전 헤드부분에 있을수 있게 허용한다.

Here are some examples of actions that can fail if methods are run before the document is fully loaded:

아래에 문서가 완전히 로드되기전에 메소드가 실행될경우 실패하게 되는 액션의 예들이 있다 :

  • Trying to hide an element that is not created yet
  • Trying to get the size of an image that is not loaded yet
  • 아직 만들어지지 않은 요소를 숨기려고 시도할경우
  • 아직 로드되지 않은 이미지의 크기를 조회할경우

Tip: The jQuery team has also created an even shorter method for the document ready event:

JQuery팀은 문서 준비됨 이벤트를 위한 더짧은 생성됨 이벤트를 만들어 두었다.

$(function(){

   // jQuery methods go here...

});

Use the syntax you prefer. We think that the document ready event is easier to understand when reading the code.

당신의 마음에 드는 문법을 사용해라. 우리가 생각하기에 문서 준비됨 이벤트를 사용하는게 코드를 읽을때 더이해하기 쉬운것같다.

'JQuery' 카테고리의 다른 글

jQuery Event Methods(JQuery 이벤트 메소드들)  (2) 2016.03.14
jQuery Selectors(JQuery선택자)  (0) 2016.03.14
JQuery 시작하기  (0) 2016.03.11
JQuery 소개  (0) 2016.03.11
posted by 래머
2016. 3. 11. 12:28 JQuery

jQuery Get Started(JQuery 시작하기)


Adding jQuery to Your Web Pages(JQuery를 당신의 웹사이트에추가하기)

There are several ways to start using jQuery on your web site. You can:

당신의 웹사이트에서 JQuery를 사용하기위한 다음의 몇가지 방법들이 있다:

  • Download the jQuery library from jQuery.com(JQuery.com으로부터 JQuery라이브러리 다운로드하기)
  • Include jQuery from a CDN, like Google(구글의 CDN 같은곳을 통해 JQuery를 포함시키기)

Downloading jQuery(JQuery다운로드하기)

There are two versions of jQuery available for downloading:

다운로드 가능한 두가지 버전의 JQuery라이브러리가 있다:

  • Production version - this is for your live website because it has been minified and compressed
  • 상용버전 - 이버전은 축소되고 압축되었기 때문에 당신의 라이브 웹사이트를 위한것이다.
  • Development version - this is for testing and development (uncompressed and readable code)
  • 개발버전 - 이것은 테스트 및 개발을 위한 버전이다(압축되지 않았고 읽기 가능한 코드이다)

Both versions can be downloaded from jQuery.com.

두 버전들은 JQuery.com으로부터 다운로드 할 수 있다.

The jQuery library is a single JavaScript file, and you reference it with the HTML <script> tag (notice that the <script> tag should be inside the <head> section):

JQuery라이브러리는 단일의 자바스크립트 파일이며, HTML <script> 태그를 통해서 참조할 수 있다(주의할것은 <script>태그는 <head> 섹션내부에 포함되어야 할것이다)

<head>
<script src="jquery-1.12.0.min.js"></script>
</head>

Tip: Place the downloaded file in the same directory as the pages where you wish to use it.

팁 : 당신이 사용할 장소와 같은 디렉토리에 다운로드될 파일을 위치시켜라

Note

Do you wonder why we do not have type="text/javascript" inside the <script> tag?
type="text/javascript"속성을 <script>태그 내부에 가지고 있지 않은지 놀랍지 않은가?


This is not required in HTML5. JavaScript is the default scripting language in HTML5 and in all modern browsers!

이것은 HTML5에서 요구되지 않기 때문이다. 자바스크립트는 HTML5와 현대의 모든 브라우저들에서 기본스크립트 언어이다.


jQuery CDN

If you don't want to download and host jQuery yourself, you can include it from a CDN (Content Delivery Network).

Both Google and Microsoft host jQuery.

만일 자체적으로 JQuery를 호스트하는 형태로 다운로드되기를 원하지 않는다면, 그것을 구글이나 마이크로소프트가 호스트하는 JQuery의 CDN으로 부터 포함시킬 수 있다.


To use jQuery from Google or Microsoft, use one of the following:

구글이나 마이크로소프트로부터 JQuery를 이용하기위해 다음의 하나를 사용한다:

Google CDN:

<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
</head>
Try it yourself »

Microsoft CDN:

<head>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.0.min.js"></script>
</head>
Try it yourself »
Note

One big advantage of using the hosted jQuery from Google or Microsoft:
구글 또는 마이크로소프트의 호스트를 이용하는것에 대한 하나의 큰 장점:

Many users already have downloaded jQuery from Google or Microsoft when visiting another site. As a result, it will be loaded from cache when they visit your site, which leads to faster loading time. Also, most CDN's will make sure that once a user requests a file from it, it will be served from the server closest to them, which also leads to faster loading time.
많은 사용자들은 다른 하나의 사이트를 방문할때 구글이나 마이크로소프트로부터 다운로드된 JQuery를 이미 가지고 있게된다. 결과적으로, 그들이 당신의 사이트를 방문할때 그것은 캐시로부터 로드되고, 

이것은 로딩 시간을 빠르게한다. 또한, 대부분의 CDN들은 일단 유저들로부터 파일이 요청되면, 그들로부터 가장가까운 서버로 부터 그것을 제공할것이고, 이것은 로딩시간을 빠르게 하게된다.


'JQuery' 카테고리의 다른 글

jQuery Event Methods(JQuery 이벤트 메소드들)  (2) 2016.03.14
jQuery Selectors(JQuery선택자)  (0) 2016.03.14
jQuery Syntax(Jquery 문법)  (0) 2016.03.14
JQuery 소개  (0) 2016.03.11
posted by 래머
2016. 3. 11. 12:06 JQuery



JQuery Introduction(JQuery소개)


The purpose of jQuery is to make it much easier to use JavaScript on your website.

JQuery의 목적은 당신의 웹사이트에서 자바스크립트를 매우 쉽게 사용하도록 만드는것이다.


What You Should Already Know(당신은 먼저 어떤것들에 대해서 알아야 하는가?)

Before you start studying jQuery, you should have a basic knowledge of:

JQuery를 배우기전에, 당신은 다음에 대한 기본지식이 필요할것이다.

  • HTML
  • CSS
  • JavaScript

-HTML

-CSS

-JavaScript


If you want to study these subjects first, find the tutorials on our Home page.

만일 당신이 이 주제들을 먼저 배우기 원한다면 우리의 웹사이트에서 튜토리얼을찾을 수 있다.


What is jQuery?(JQuery는 무엇인가?)

jQuery is a lightweight, "write less, do more", JavaScript library.

JQuery는 가볍고, "적게 쓰고, 많은것을 하는" 자바스크립트 라이브러리다.


The purpose of jQuery is to make it much easier to use JavaScript on your website.

Jqeury의 목적은 당신의 웹사이트에서 자비스크립트 사용을 쉽게 만드는 것이다.


jQuery takes a lot of common tasks that require many lines of JavaScript code to accomplish, and wraps them into methods that you can call with a single line of code.

JQuery는 구현을 위해 매우 많은 자바스크립트 코드 라인을 요구하는 공통적인 작업을 처리하며, 이러한 방법들을 단일라인의 코드호출로 수행할 수 있게 감싸고 있다.


jQuery also simplifies a lot of the complicated things from JavaScript, like AJAX calls and DOM manipulation.

JQuery는 또한 ASAX나 DOM조작과 같이 자바스크립트에 매우 복잡하게 얽힌것들을 단순화 시킨다.


The jQuery library contains the following features:

JQuery라이브러리는 다음의 기능들을 담고 있다:

  • HTML/DOM manipulation(HTML/DOM 조작)
  • CSS manipulation(CSS 조작)
  • HTML event methods(HTML 이벤트 메소드들)
  • Effects and animations(이팩트와 애니메이션들)
  • AJAX
  • Utilities(유틸리티들)

Tip: In addition, jQuery has plugins for almost any task out there.

추가적으로, JQuery는 그것 외에 임의의 작업을 위한 거의 모든 플러그인들을 가지고 있다.


Why jQuery?(왜 JQuery인가?)

There are lots of other JavaScript frameworks out there, but jQuery seems to be the most popular, and also the most extendable.

세상에는 수많은 자바스크립트 프레임워크들이 있다, 그러나 JQuery는 가장 대중적이며, 가장 확장성있는것으로 보여진다.


Many of the biggest companies on the Web use jQuery, such as:

다음과 같은 많은 거대 회사들이 웹사이트에서 JQuery를 사용하고 있다:

  • Google
  • Microsoft
  • IBM
  • Netflix
Note

Will jQuery work in all browsers?(JQuery는 모든 브러우저들에서 작동하는가?)

The jQuery team knows all about cross-browser issues, and they have written this knowledge into the jQuery library. jQuery will run exactly the same in all major browsers, including Internet Explorer 6!
JQuery팀은 크로스 브라우저 이슈들에 대한 모든것들을 알 고 있고, 이러한 지식들은 JQuery라이브러리에 쓰여졌다. JQuery는 인터넷 익스플러러 6를 포함하여 모든 메이저 브라우저들에서 완벽히 동일하게 실행될것이다!


'JQuery' 카테고리의 다른 글

jQuery Event Methods(JQuery 이벤트 메소드들)  (2) 2016.03.14
jQuery Selectors(JQuery선택자)  (0) 2016.03.14
jQuery Syntax(Jquery 문법)  (0) 2016.03.14
JQuery 시작하기  (0) 2016.03.11
posted by 래머
prev 1 next