我正在尝试在 jQuery Mobile 中创建一个带有一些警报的全局弹出框。那可能吗?似乎弹出窗口必须位于 jquery 移动页面中才能访问。我假设这是因为该页面之外的所有内容都不可见。
这是我正在谈论的一个例子。如何让第二个版本工作?
作品
<div data-role="page" data-theme="a">
<div data-role="content">
<a href="#alert-popup" data-rel="popup" data-role="button" data-inline="true">Popup with close button right</a>
<div data-role="popup" id="alert-popup" data-theme="c">
<a href="#" data-rel="back" data-role="button" data-theme="a" data-icon="delete" data-iconpos="notext" class="ui-btn-right">Close</a>
<h1>Alert Title</h1>
<p>
Freegan thundercats raw denim adipisicing elit. 8-bit hella lomo do irony, sartorial aliquip wes anderson. Elit quinoa consectetur hoodie, bushwick 3 wolf moon godard eiusmod next level quis echo park. Keytar ullamco exercitation salvia, brunch before they sold out cray minim echo park polaroid vegan cliche reprehenderit vero synth. Artisan VHS fanny pack aliqua ex williamsburg duis. Reprehenderit chillwave skateboard post-ironic, food truck ethical est wes anderson letterpress incididunt master cleanse. Selvage farm-to-table elit vinyl jean shorts, consectetur delectus non banksy.
</p>
</div>
</div>
</div>
不工作
<div data-role="page" data-theme="a">
<div data-role="content">
<a href="#alert-popup" data-rel="popup" data-role="button" data-inline="true">Popup with close button right</a>
</div>
</div>
<div data-role="popup" id="alert-popup" data-theme="c">
<a href="#" data-rel="back" data-role="button" data-theme="a" data-icon="delete" data-iconpos="notext" class="ui-btn-right">Close</a>
<h1>Alert Title</h1>
<p>
Freegan thundercats raw denim adipisicing elit. 8-bit hella lomo do irony, sartorial aliquip wes anderson. Elit quinoa consectetur hoodie, bushwick 3 wolf moon godard eiusmod next level quis echo park. Keytar ullamco exercitation salvia, brunch before they sold out cray minim echo park polaroid vegan cliche reprehenderit vero synth. Artisan VHS fanny pack aliqua ex williamsburg duis. Reprehenderit chillwave skateboard post-ironic, food truck ethical est wes anderson letterpress incididunt master cleanse. Selvage farm-to-table elit vinyl jean shorts, consectetur delectus non banksy.
</p>
</div>