jQueryMobile 基本フォーマット


<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<!--デバイスの幅そのまま、イニシャルスケール1-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQueryMobile サンプル</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css">
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.js"></script>
</head>
<body>
<!--data-role </div>までが1ページ-->
<div data-role="page">
  <div data-role="header">
   <h1>jQueryMobile Test</h1>
  </div>
<div data-role="content">
  <p>jQueryMobileを利用しています。</p>
  <ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="f">
   <li data-role="list-divider">メニュー</li>
   <li><a href="#">メニュー1</a></li>
   <li><a href="#">メニュー2</a></li>
   <li><a href="#">メニュー3</a></li>
 </ul>
 </div>
 <div data-role="footer">
   <h2>フッター情報</h2>
 </div>
</div>
</body>
</html>