1

如何使用 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>
4

1 回答 1

0

如何在 ul 标签上的内联样式中添加溢出:滚动或溢出:自动?

于 2013-08-13T10:18:23.397 回答