如何使用 jQuery Mobile 在弹出窗口中滚动列表视图?
<a href="#currency" data-rel="popup" data-role="none" data-inline="true" data-icon="gear" data-theme="c">Currency</a>
<div data-role="popup" id="currency" data-theme="c">
<ul data-role="listview" data-inset="true" style="min-width:210px;" data-theme="c">
<?php foreach($currencies as $key => $currency): ?>
<li><a value="<?php echo $key; ?>"><?php echo $currency); ?></a></li>
<?php endforeach; ?>
</ul>
</div>