我想显示弹出窗口。
这里是 jQuery Mobile 页面:
<div>
<div data-role="footer" data-position="fixed" class="centered-butons">
<div data-role="controlgroup" data-type="horizontal" style="text-align: center" data-theme="b">
<a href="#myPopup" data-rel="popup" class="ui-btn ui-corner-all">Show Popup</a>
</div>
</div>
<div></div>
<div id="myPopup" data-role="popup" data-theme="a" data-corners="true" data-transition="none" data-position-to="origin" data-aria="disabled">
<p>This is a simple popup.</p>
</div>
</div>
当我单击锚时,弹出窗口不显示。