【发布时间】:2011-11-02 04:41:52
【问题描述】:
我想用 jquery mobile 做一件简单的事:
我有一个适用于 android 的离线网络应用程序(使用 phonegapp 和 jquery mobile)
我为我的本地 html 文件做一个链接列表:
<ul data-role="listview" id="mylist">
<li><a href="./information.html">Information</a> </li></ul>
当我点击链接时,我的文件 information.html 没有显示,显示的生成的 html 页面如下所示:
<div style="min-height: 965px;" class="ui-page ui-body-c ui-page-active"
data-url="[fullpath]/information.html" data-role="page">undefined</div>
显示的内容不是来自information.html
(i have also tried with <li><a href="#information">Information</a>
但结果是一样的……
你有什么想法吗?
谢谢。
【问题讨论】:
标签: jquery html web-applications mobile jquery-mobile