我正在尝试创建一个可折叠的,当展开时,它应该滚动它下面的内容。所以它下面的内容保持不变。
<div data-role="collapsible">
<h3>Content of collapsible</h3>
<ul data-role="listview">
<li>I'm the collapsible set content.</li>
<li>I should roll over the data beneath me.</li>
</ul>
</div>
<div>
<p>I'm data underneath.</p>
<p>I should remain in place when the collapsible is unfolded.</p>
</div>
示例代码:http: //jsfiddle.net/3swM6/
可能我使用了错误的方法来实现这一点。