jQuery-Mobile 基本

jQuery-Mobile 基本

ライブラリ読ã¿è¾¼ã¿

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.js"></script>
jQueryã¨åŒã˜ãライブラリを読ã¿è¾¼ã‚€
jQueryMobileã¯jQueryライブラリを読ã¿è¾¼ã‚“ã§ã„ã‚‹äº‹ã‚’å‰æã«å‹•作ã™ã‚‹ã®ã§jQueryライブラリã®å‚ç…§ã‚‚å¿…è¦

フォーマット

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>jQuery Mobile</title>
  
  ライブラリã®èª­ã¿è¾¼ã¿(ç•¥)

</head>
<body>
  <div data-role="page" data-theme="a">

    data-theme="a"
    data-theme="b"
    data-theme="c"
    data-theme="d"
    data-theme="e"
    data-theme="f"
    
    <div data-role="header">
      <h1>ブラウザã«ãŠã‘ã‚‹<title></title></h1>
    </div>
    
    <div data-role="content">
      ブラウザã«ãŠã‘ã‚‹<body></body>
    </div>
    <div data-role="footer">
      <h1>ブラウザã«ãŠã‘ã‚‹<title></title>ãŒç”»é¢ã®ä¸‹ã«å‡ºã‚‹</h1>
    </div>
  </div>
</body>
</html>

Follow me!