案例: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" data-iconpos="notext" data-theme="a">Left Arrow Icon</a>
13
    <a href="#" data-role="button" data-icon="arrow-r" data-iconpos="notext" data-theme="b">Right Arrow Icon</a>
14
    <a href="#" data-role="button" data-icon="arrow-u" data-iconpos="notext" data-theme="c">Up Arrow Icon</a>
15
    <a href="#" data-role="button" data-icon="arrow-d" data-iconpos="notext" data-theme="d">Down Arrow Icon</a>
16
    <a href="#" data-role="button" data-icon="plus" data-iconpos="notext" data-theme="e">Plus Icon</a>
17
  </div>
18
</div>
19
20
</body>
21
</html>
22