jQuery 적용하기

2019. 3. 27. 16:29JavaScript

# jQuery 적용하기 

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

32

<%@ page language="java" contentType="text/html; charset=UTF-8"

pageEncoding="UTF-8"%>

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>EX_04</title>

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

 

<script>

<!-- jQuery에 document를 적용하여 사용할수 있도록 설정 -->

jQuery(document).ready(function(){

alert('jQuery 준비1');

});

 

jQuery(document).ready(function(){

alert('jQuery 준비2');

});

 

$(document).ready(function(){

alert('이렇게도 사용가능 ');

});

 

$(function(){

alert('이렇게도 사용가능2 ');

});

 

</script>

</head>

<body>

</body>

</html>

Colored by Color Scripter

cs

'JavaScript' 카테고리의 다른 글

Chart(표) 사용하기 [막대그래프,ColumnChart]  (0) 2019.04.03
JSON 의 DB연동(AJAX 사용)  (0) 2019.04.03
Script 기본 사용법 (2)  (0) 2019.03.27
Script 기본 사용법(1)  (0) 2019.03.27
Practice :Web Calculator[웹 계산기]  (0) 2018.12.10