实例代码“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="header">
11
  <a href="#" data-role="button" data-icon="home">主页</a>
12
  <h1>欢迎来到我的主页</h1>
13
  <a href="#" data-role="button" data-icon="search">搜索</a>
14
</div>
15
16
<div data-role="content">
17
  <p>该按钮仅用于演示,不会有任何效果。</p>
18
</div>
19
20
<div data-role="footer" class="ui-btn">
21
  <a href="#" data-role="button" data-icon="plus">在Facebook关注我</a>
22
  <a href="#" data-role="button" data-icon="plus">在Twitter关注我</a>
23
  <a href="#" data-role="button" data-icon="plus">在Instagram关注我</a>
24
</div>
25
26
</body>
27
</html>
28