<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<script type="text/javascript" src="/Web02/jquery.js"></script>
<script type="text/javascript">
 alert(jQuery.browser.version);
</script>
<title>Insert title here</title>
</head>
<body>
<script type="text/javascript">
 $(document).ready(
  function(){
   $("#msgid").html("jQuery Hello World입니다").
    css("font-weight", "bold").css("background", "yellow");
  }
 );
</script>

HTML Hello world입니다<br/>
<div id="msgid"></div>
</body>
</html>

'자바 스크립트' 카테고리의 다른 글

[jquery]플리커에서 원하는 이미지 가져오기  (0) 2012.06.10
jQuery #2  (0) 2012.05.22
시집만들기2  (0) 2009.06.22
종합예제-시집 만들기  (0) 2009.06.22
firstChild를 이용한 방법  (0) 2009.06.22

+ Recent posts