我正在使用jquery mobile和phonegap制作一个Android应用程序,其中包含10个不同的html页面。所有页面在浏览器中都能正常工作。但是,当以下列方式导航到某些页面时,java脚本无法正常工作。
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>
答案 0 :(得分:0)
我遇到了同样的问题,但添加以下代码使它对我有用。添加属性
的rel = “外部”
<a href="pagename.html" rel="external" data-role="button">Click Me</a>
我希望它也能帮到你