我在网上找到了这个脚本...我想在右上角的星上添加一个简单的对话框,但我无法使其有效。
已尝试使用以下代码(第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
我希望有人会帮助我。
答案 0 :(得分:0)
考虑这个例子:
PAGE 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>
PAGE B
<div data-role="page">
<div data-role="content">
<h3>Page B</h3>
</div>
</div>