ํ‹ฐ์Šคํ† ๋ฆฌ ๋ทฐ


<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jQuery Mobile</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.css" />
<script src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.js"></script>
</head>
<body>
<div data-role="page" id="home">
   <div data-role="header">
      <h1>jQueryMobile</h1>
   </div>
   <div data-role="content">
      <p>Hello World</p>
   </div>
   <div data-role="footer">
      <p>Hello world for jQueryMobile</p>
     <A href="#" data-role="button" data-theme="a">ํ™•์ธ</a>
  <A href="#" data-role="button" data-theme="b">์ทจ์†Œ</a>
   </div>
</div>
</body>
</html>

- <head>์•ˆ์˜ include๋ฅผ ์ˆœ์„œ๋Œ€๋กœ ๊ธฐ์ˆ ํ•ด์•ผ ํ•œ๋‹ค
- data-role ์†์„ฑ์œผ๋กœ ์˜์—ญํƒœ๊ทธ <div>์˜ ์—ญํ• ์„ ๋ถ€์—ฌํ•œ๋‹ค.
๋Œ“๊ธ€