现在,我正在开发 PhoneGap 应用程序,所有功能都已成功完成,这是客户需要的,但是在我的 PhoneGap 应用程序中,我使用多个 html 页面单击一个按钮 index.html 它将导航到另一个 html,但是当导航一个页面时,客户端需要更清晰的外观到另一页..
代码是:
<li><a onclick="callFestvialinfo()"><img src="images/festival_info_button.png" width="123" height="123" alt="" /></a></li>
function callFestvialinfo()
{
window.location = "festival_info.html";
}
它会festival_info.html
正常导航,但是当点击返回时,客户需要从索引到索引festival_info.html
和festival_info.html
索引。