实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<link rel="stylesheet" href="https://apps.bdimg.com/libs/jquerymobile/1.4.2/jquery.mobile.min.css">
5
<script src="https://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
6
<script src="https://apps.bdimg.com/libs/jquerymobile/1.4.2/jquery.mobile.min.js"></script>
7
</head>
8
<body>
9
10
<div data-role="page" id="pageone">
11
  <div data-role="header">
12
  <h1></h1>
13
  </div>
14
15
  <div data-role="content">
16
   <p>三列布局:</p>
17
   <div class="ui-grid-b">
18
     <div class="ui-block-a"><a href="#" data-role="button">第一列按钮</a><br>
19
       <span>第一列:This is some text. This is some text. This is some text. This is some text. This is some text.</span>
20
     </div>
21
     <div class="ui-block-b">
22
       <a href="#" data-role="button">第二列按钮</a><br>
23
       <span>第二列:This is some text. This is some text. This is some text. This is some text.</span>
24
     </div>
25
     <div class="ui-block-c">
26
       <a href="#" data-role="button">第三列按钮</a><br>
27
       <span>第三列:This is some text. This is some text. This is some text. This is some text.</span>
28
     </div>
29
   </div>
30
  </div>
31
</div> 
32
33
</body>
34
</html>
35