我不确定如何在此位置放置弹出窗口。在文档示例中,它声明在弹出窗口应该出现的 href 中使用弹出 div 的 id。
例子:
<a href="#popupPadded" data-rel="popup" data-role="button">Popup with padding</a>
<div data-role="popup" id="popupPadded" class="ui-content">
<p>This is a popup with the <code>ui-content</code> class added to the popup container.</p>
</div>
但我的部分观点正在其他地方使用 href="#"。如何在局部视图中定位我的弹出窗口并在其他页面上重用它们?
这是我的部分视图的 HTML:
<a href="#" data-icon="GhCsStatus-Red" data-position-to="origin" data-inline="true" data-mini="true" data-role="button" id="GhCsStatus_CS" style="pointer-events: none;">CS</a>
<a href="#" data-icon="GhCsStatus-Red" data-position-to="origin" data-inline="true" data-mini="true" data-role="button" id="GhCsStatus_GH" style="pointer-events: none;">GH</a>
<div id="GH_popup" data-role="popup">
<p> Get History is OFF! </p>
</div>
<div id="CS_popup" data-role="popup">
<p> Communication Service is OFF! </p>
</div>
<div id="GHCS_popup" data-role="popup">
<p> Get History and Communication Service are OFF! </p>
</div>