[jQuery mobile] hello jQuery mobile

 

先來一個template

<!doctype html>
<html>
<head>
    <title>My Page</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
    <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
    <div data-role="page">
 
        <div data-role="header">
            <h1>My Title</h1>
        </div><!-- /header -->
 
        <div data-role="main" class="ui-content">
            <p>Hello world</p>
        </div><!-- /content -->
 
        <div data-role="footer">
            <h4>My Footer</h4>
        </div><!-- /footer -->
 
    </div><!-- /page -->
</body>
</html>

JS Bin on jsbin.com

如果一個屬性使用data-role字眼代表使用了jQuery mobile技術,如下形式

<div data-role='page'>

</div>

 

注意,其中的<div data-role="content">將會在jQueryMobile1.5.0被拿掉,

其效果改由<div data-role="main" class="ui-content">取代。

 

參考資料:

Learning Center

demos

jQuery Mobile Tutorial