0

我想显示弹出窗口。

这里是 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>

当我单击锚时,弹出窗口不显示。

4

1 回答 1

1

请看一下我制作的小提琴,它工作正常。

我认为您的问题可能是您的 jQuery JS 库版本在更新到 1.4.5 后与新的 JQuery Mobile 不兼容。

尝试更改 jQuery 版本。它对我有用

  • jquery-1.8.3.min.js
  • jquery.mobile-1.4.5.min.js

我希望这可以帮助你!

于 2016-03-23T18:36:57.377 回答