导航页面时,javascript无法在phonegap中工作

时间:2013-11-16 04:56:30

标签: android jquery-mobile cordova multipage

我正在使用jquery mobile和phonegap制作一个Android应用程序,其中包含10个不同的html页面。所有页面在浏览器中都能正常工作。但是,当以下列方式导航到某些页面时,java脚本无法正常工作。

  • index>>第1页>>第5页......不工作
  • index>>第1页>>第2页>>第3页>>第4页>>第5页......不工作
  • index>>第5页......工作

javascript无法正常工作的原因是什么?我正在使用锚标记的href属性导航页面。

不工作的代码:

<a data-role="button" href="../friends/friends.html" data-icon="6_social_group" data-iconpos="top" data-theme="f" data-mini="false">Friends</a>

代码工作:

<a href="content/friends/friends.html">Friends</a>

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,但添加以下代码使它对我有用。添加属性

  

的rel = “外部”

<a href="pagename.html" rel="external" data-role="button">Click Me</a>

我希望它也能帮到你