jQuery 기본 자습서 발췌 - Hello World

3367 단어 Hello world
Hello jQuery
=======
공백 HTML 페이지 코드, jquery만 불러옵니다.js 라이브러리.
<html>

<head>



    <script type="text/javascript" src="jquery-1.3.2.min.js"></script>



    <script type="text/javascript">                                         

   // we will add our javascript code here                                     

    </script>



</head>

<body>

    <!-- we will add our HTML content here -->

</body>

</html>

 
다음 코드는 문서 대상의ready 이벤트에 이벤트 처리 코드를 등록합니다.
$(document).ready(function() {

    // do stuff when DOM is ready

});

 
다음 코드의 작업은 문서 대상이 준비되었을 때ready 이벤트를 호출할 때 현재 문서의 모든 a 대상(하이퍼링크 대상)을 선택하고 a 대상이 클릭될 때alert를 팝업해서 Hello World를 출력하는 것입니다.
$(document).ready(function() {

    $("a").click(function() {

        alert("Hello world!");

    });

});

 
여기 $("a") 를 주의하십시오. 이것은 jquery의 선택기 (selector) 입니다.
기호'$' 자체는 jQuery의 "class"의 별명이기 때문에 $()는 새로운 jQuery 대상을 구성합니다.
click ()는 jQuery 대상의 함수입니다.
위의 코드는 실제적으로 클릭 () 이벤트를 선택한 모든 요소에 연결하고 (이 예는 하이퍼링크 요소일 뿐) 이벤트가 발생할 때 우리가 제공한 함수 코드를 실행합니다.
 
위의 코드는 다음과 같습니다.
<a href="" onclick="alert('Hello world')">Link</a>

 
이 두 자의 차이는 매우 뚜렷하다.
  • 우리는 모든 요소에 onclick을 쓸 필요가 없다.
  • 우리는 구조(HTML)와 행위(JS)를 뚜렷하게 분리했다. 구조(HTML)와 표현(CSS)을 분리하는 것과 같다.

  •  
    출처:
    Tutorials:Getting Started with jQuery
    http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery

    좋은 웹페이지 즐겨찾기