<?xml version="1.0" encoding="EUC-KR" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR" />
<title>Insert title here</title>
<style type="text/css">
.bg{background-color: silver}
.red{background-color: red}
</style>
</head>
<script src="js/jquery-1.8.0.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(
function(){
$('#hw').addclass("bg");
$('#hw').click(function(){
$(this).addclass("red");
})
}
)
</script>
<body>
<div style="background-color: yellow" onclick="alert('hi')">
jQuery 시작하기
</div>
<div class="bg">
jQuery 시작하기
</div>
<div id="hw">
jQuery 시작하기
</div>
</body>
</html>
'Android' 카테고리의 다른 글
전화걸기 애 만들기 : 암시적 인텐트 사용 (0) | 2019.06.02 |
---|---|
MAC 에 tomcat 설정 하기 (0) | 2012.08.18 |
JAVA 1th (0) | 2012.08.17 |
eclipse setup (0) | 2012.08.17 |
Java Try / Catch (0) | 2011.05.15 |