posted by 방랑군 2012. 1. 8. 20:48
01 <%@ page contentType="text/html; charset=UTF-8"%>
02 <%
03 String cp = request.getContextPath();
04 %>
05 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
06 <html>
07 <head>
08 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
09 <title>Insert title here</title>
10
11 <!-- jQuery 사용시 jquery-1.X.X.min.js 파일 연결 필수 -->
12 <script type="text/javascript" src="<%=cp%>/js/jquery-1.6.1.min.js" ></script>
13
14 <script type="text/javascript">
15 //익명 함수
16 //동일한 이벤트가 동시에 있는 경우 나중에 작성한 부분만 실행됨.
17 window.onload=function() {
18 alert("Hello, JavaScript");
19 };
20 window.onload=function() {
21 alert("Hello, jQuery");
22 };
23 </script>
24
25 </head>
26 <body>
27 <h1>jQuery 테스트</h1>
28 자바스크립트에서 동일한 이벤트 등록시 나중에 작성한 부분만 실행됨.
29 </body>
30 </html>

실행 결과