티스토리 뷰

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!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=UTF-8">
<title>jQuery Test Page</title>
<style type="text/css">
 div#displayArea{
 width : 200px;
 height : 200px;
 border : 5px double #6699FF;
 }
</style>
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<script>
 $(document).ready(function(){
  $("button").click(function(){
   $("#displayArea").html("<img src='http://image.celebtide.com/celeb/sq/1048_sq_01.jpg' border='0'/>");
  });
 });
</script>
</head>
<body>
 <div id="displayArea">이곳의 내용이 변경됨</div>
 <button>표시</button>
</body>
</html>




버튼을 누르면 이미지가 나오도록 변경된다.

댓글
공지사항
최근에 올라온 글
«   2025/06   »
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
글 보관함