jQuery Mobile资料索引

书:《jQuery Mobile Web Development Essentials》
代码:https://github.com/cfjedimaster/jQuery-Mobile-Book

data-inset="true"
These are lists that do not take up the full width of the device.

Example:
<ul data-role="listview" data-inset="true">
<li>Raymond Camden</li>
</ul>



俺建的WebStorm文件模板:

<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <meta charset="UTF-8">
    <title></title>
    <link rel="stylesheet" href="../js/jquery.mobile-1.4.4.min.css"/>
    <script src="../js/jquery-1.11.0.min.js"></script>
    <script src="../js/jquery.mobile-1.4.4.min.js"></script>
</head>
<body>
    <div data-role="page" id="page1">
        <div data-role="header">
            <h1></h1>
        </div>
        <div data-role="content">
            
        </div>
    </div>
</body>
</html>





你可能感兴趣的:(jQuery Mobile资料索引)