1

感谢您花时间阅读我的问题。我正在尝试使用 Jquery mobile 打开一个对话框。我按照文档使用了 data-rel="dialog" 表示法和 data-transition="pop"。我没有出现在同一页面上的对话框,而是出现了一个全新的页面,其中出现了对话框。有人可以帮助我解决此功能。

这是我的初始主页代码:

<article>
                <ul data-role="listview" data-split-icon="star" data-split-theme="d" data-inset="true">
                    <li><a href="#black_seed_desc" data-rel="dialog"  ><img src="black_seed.jpg"/>
                        <h3>Black Seed Oil</h3>
                        </a>
                        <a href="#black_seed_purchase" data-rel="dialog" data-transition="pop">Purchase Black Seed Oil</a>
                    </li>
                </ul>
            </article>

这是我的对话框页面代码:

<div data-role="dialog" id="black_seed_purchase" data-theme="c">
    <section data-role="content">
        <h1>Purchase Black Seed Oil?</h1>
        <p>By purchasing Black Seed Oil you will receive
        an email receipt copy sent to you for your reference.</p>
        <a href="#purchase_blackseed" data-inline="true" data-corners="true" data-rel="back" data-role="button" data-shadow="true" data-iconshadow="true"
        data-wrapperrels="span">
        <span>
            <span>Buy: $49.99</span>
            <span>&nbsp;</span>
        </span>
        </a>
        <a href="#" data-role="button" data-rel="back" data-inline="true"       data-corners="true"
        data-wrapperrels="span" data-shadow="true" data-iconshawdow="true">
        <span>
            Cancel
        </span>
        </a>
    </section>
</div>

这是一个工作示例。 http://jsfiddle.net/Gajotres/w3ptm/

这里也是我想要得到的屏幕截图。

在此处输入图像描述

这是我所拥有的:

在此处输入图像描述

4

1 回答 1

0

corodova 定义了一个自定义对话框,您可以使用它。

检查这个

这可能会帮助你。

于 2014-02-04T09:44:44.587 回答