我正在尝试使用 jQuery Mobile 显示弹出窗口,但弹出窗口的样式有问题。HTML 标记如下所示:
<div data-role="popup" id="confirmDialog" data-overlay-theme="a" data-theme="c" style="max-width:400px;" class="ui-corner-all">
<div data-role="header" data-theme="a" class="ui-corner-top">
<h1>Delete Page?</h1>
</div>
<div data-role="content" data-theme="d" class="ui-corner-bottom ui-content">
<h3 class="ui-title">Are you sure you want to delete this page?</h3>
<p>This action cannot be undone.</p>
<a href="#" data-role="button" data-inline="true" data-rel="back" data-theme="c">Cancel</a>
<a href="#" data-role="button" data-inline="true" data-rel="back" data-transition="flow" data-theme="b">Delete</a>
</div>
</div>
(顺便说一句,此代码是从 jQuery Mobile 站点复制的)。
当我使用 .popup('open') 方法打开弹出窗口时,标题(删除页面?)和按钮没有样式。标题显示为常规文本,按钮显示为常规链接。
什么会导致这种行为?
谢谢!