Jquery移动加载本地html页面

时间:2011-08-23 18:10:43

标签: jquery html5 web-applications mobile jquery-mobile

我想用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>

但结果是一样的......

你有什么想法吗?

谢谢。

1 个答案:

答案 0 :(得分:1)

据我了解,jQuery Mobile试图自动做一些奇特的东西。如果您不希望这样做,请将rel="external"放入您的链接标记中。所以这可能有用:

<a href="./information.html" rel="external">