我的 jquery 移动弹出窗口有问题。它仅显示数据叠加。单击上下文菜单后将显示弹出窗口。
我正在重定向到一个站点,然后我将打开弹出窗口。
$.mobile.changePage("#account"); //redirect
setTimeout(function(){
$('#popupCloseRight').popup("open"); // open the popup but shows only
},100); the grey overlay
HTML 代码:
<div data-role="popup" data-overlay-theme="a" id="popupCloseRight" class="ui-content" style="max-width:280px">
<a href="#" data-rel="back" data-role="button" data-theme="a" data-icon="delete" data-iconpos="notext" class="ui-btn-right">Close</a>
<p>Check your E-mail</p>
</div>