未分類

jQuery Mobile : Hello, World! を表示する

準備

(なし)

デザイン

(なし)

サンプルコード

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=devie-width, initial-scale=1" />
<title>jQuery Mobile</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
</head>
<body>

<section data-role="page" data-title="Header for jQuery Mobile">

<header data-role="header">
<h1>jQuery Mobile</h1>
</header>

<div data-role="content">
<p>Hello, World!</p>
</div>

<footer data-role="footer">
Footer for jQuery Mobile
</footer>

</section>

</body>
</html>

解説

Hello, World! を表示しています。

結果

こちらを参照して下さい。

-未分類