jQuery 이벤트 함수 위치를 배치하는 두 가지 방법

6471 단어 jquery
jQuery 이벤트 함수
jQuery 이벤트 처리 방법은 jQuery의 핵심 함수입니다.
이벤트 프로세서는 HTML에서 특정 이벤트가 발생할 때 호출되는 방법을 가리킨다.
일반적으로 섹션의 이벤트 처리 방법에 jQuery 코드를 배치합니다.
인스턴스
 1 <html>

 2 <head>

 3 <script type="text/javascript" src="jquery.js"></script>

 4 <script type="text/javascript">

 5 $(document).ready(function(){

 6   $("button").click(function(){

 7     $("p").hide();

 8   });

 9 });

10 </script>

11 </head>

12 

13 <body>

14 <h2>This is a heading</h2>

15 <p>This is a paragraph.</p>

16 <p>This is another paragraph.</p>

17 <button>Click me</button>

18 </body>

19 

20 </html>

위의 예에서는 버튼의 클릭 이벤트가 트리거될 때 함수를 호출합니다.
$("button").click(function() {..some code... } )

이 메서드는 모든

요소를 숨깁니다.

$("p").hide();

개별 파일의 함수
만약 웹 사이트에 많은 페이지가 포함되어 있고, jQuery 함수가 쉽게 유지보수되기를 원한다면, jQuery 함수를 독립적으로 놓으십시오.js 파일에서
강좌에서 jQuery를 보여줄 때 함수를 부분에 직접 추가합니다.단, 그것들을 단독 파일에 두는 것이 좋습니다. 이렇게 (src 속성을 통해 파일을 인용합니다.)
인스턴스
1 <head>

2 <script type="text/javascript" src="jquery.js"></script>

3 <script type="text/javascript" src="my_jquery_functions.js"></script>

4 </head>

좋은 웹페이지 즐겨찾기