jQuery Mobile チュートリアル

❮ ホームへ 次章へ ❯

jQuery Mobile は、モバイル用 web アプリケーションを作成するためのフレームワークです。

jQuery Mobile は、す一般的なべてのスマートフォンやタブレットで動作します。

jQuery Mobile は、最小限のスクリプトでページをレイアウトするために、HTML5 & CSS3 を使用しています。


Examples

各章における "Try it Yourself" の例

オンラインエディタでは、コードを編集した後で、ボタンをクリックすることでその結果を表示することができます。

<div data-role="page" id="pageone">
  <div data-role="header">
    <h1>Insert Page Title Here</h1>
  </div>

  <div data-role="main" class="ui-content">
    <p>Insert Content Here</p>
  </div>

  <div data-role="footer">
    <h1>Insert Footer Text Here</h1>
  </div>
</div> 
Try it Yourself »

どのように動作するかを確認するため、"Try it Yourself" ボタンをクリックしてください。


jQuery Mobile の例

例から学びます!W3Schools には、自分で編集してテストするための jQuery Mobile の例がたくさん見つかります。


jQuery Mobile リファレンス

W3Schools には、全ての jQuery Mobile に関する完全なリファレンスがあります。


❮ ホームへ 次章へ ❯