0

我在网上找到了这个脚本......我想在右上角的星号上添加一个简单的对话框,但我无法让它工作。

已经尝试使用下面的代码(第 118 行 main.html)

<td rowspan="2"><div><a href="foo.html" data-rel="dialog"><img src="img/star.png" /></a></div></td>

显然我已经创建了 foo.html 页面......但直到现在没有运气!

在这里你可以找到代码...

http://espediasap.espedia.it:8080/PrototipoDDP/main.html

我希望有人能帮助我。

4

1 回答 1

0

考虑这个例子:

页 A

<div data-role="page">

    <div data-role="content">
        <a href="B.html" data-icon="star" data-iconpos="right" data-role="button" data-rel="dialog">Goto B page</a>
    </div>

</div>

页 B

<div data-role="page">

    <div data-role="content">
        <h3>Page B</h3>
    </div>

</div>
于 2012-05-30T16:03:44.987 回答