<!doctype html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width,initial-scale=1">
<title>19.3可折叠集合</title>
<link rel="stylesheet" type="text/css" href="css/jquery.mobile-1.4.5.css">
<script src="js/jquery-2.1.4.min.js">
</script>
<script src="js/jquery.mobile-1.4.5.js">
</script>
</head>
<body>
<div data-role="page">
<div data-role="header" data-position="fixed">
<h1>可折叠集</h1>
</div>
<div data-role="main" class="ui-content">
<div data-role="collapsible-set">
<div data-role="collapsible" data-collapsed="false" data-mini="true">
<h2>点击我-我可以折叠1</h2>
<p>我是可以折叠的内容1。</p>
</div>
<!--改变可折叠块的图标-->
<div data-role="collapsible" data-collapsed-icon="arrow-d" data-expanded-icon="arrow-u">
<h2>点击我-我可以折叠2</h2>
<p>我是可以折叠的内容2。</p>
</div>
</div>
</div>
<div data-role="footer" data-position="fixed">
<h1>页脚文本</h1>
</div>
</div>
</body>
</html>

单击加号

单击向下箭头


