案例:jquery Mobile案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<link rel="stylesheet" href="/js/jquery.mobile-1.3.2.min.css">
5
<script src="/js/jquery-1.8.3.min.js"></script>
6
<script src="/js/jquery.mobile-1.3.2.min.js"></script>
7
</head>
8
<body>
9
10
<div data-role="page" id="pageone">
11
  <div data-role="content">
12
    <a href="#" data-role="button" data-icon="arrow-l">左箭头图标</a>
13
    <a href="#" data-role="button" data-icon="arrow-r">右箭头图标</a>
14
    <a href="#" data-role="button" data-icon="arrow-u">上箭头图标</a>
15
    <a href="#" data-role="button" data-icon="arrow-d">下箭头图标</a>
16
    <a href="#" data-role="button" data-icon="plus">加号图标</a>
17
    <a href="#" data-role="button" data-icon="minus">减号图标</a>
18
    <a href="#" data-role="button" data-icon="delete">删除图标</a>
19
    <a href="#" data-role="button" data-icon="check">检查图标</a>
20
    <a href="#" data-role="button" data-icon="home">首页图标</a>
21
    <a href="#" data-role="button" data-icon="info">信息图标</a>
22
    <a href="#" data-role="button" data-icon="back">后退图标</a>
23
    <a href="#" data-role="button" data-icon="forward">向前图标</a>
24
    <a href="#" data-role="button" data-icon="refresh">刷新图标</a>
25
    <a href="#" data-role="button" data-icon="grid">网格图标</a>
26
    <a href="#" data-role="button" data-icon="gear">齿轮图标</a>
27
    <a href="#" data-role="button" data-icon="search">搜索图标</a>
28
    <a href="#" data-role="button" data-icon="star">星形图标</a>
29
    <a href="#" data-role="button" data-icon="alert">提醒图标</a>
30
  </div>
31
</div>
32
33
</body>
34
</html>
35