ウェブ学のすすめ

Study of Web Design & Programing

jQueryMobileの基本

プレビュー


↓別ウィンドウを開いて見る
jQueryMobileの基本

QRコード

※おすすめQRコード読み取りアプリ

お父さんQR
カテゴリ: ユーティリティ
サイズ: 2.3 MB
価格: 無料

ポイント


↓jQueryMobile公式サイト
jQuery Mobile | jQuery Mobile

↓jQueryMobile日本語リファレンスサイト
jQuery Mobile 1.1.0 日本語リファレンス

↓jQueryMobileの基礎を学べる記事
ASCII.jp:10分でわかる! jQuery Mobileのキホン

コード

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>jQueryMobileの基本</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css">
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
</head>
<body>
<div data-role="page" id="index">
<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">
<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">
<h4>&copy; 2012 vinton </h4>
</div>
</div>
</body>
</html>