【发布时间】:2017-08-01 09:15:17
【问题描述】:
我正在使用 phonegap 运行它。当我在 Android 中运行时,注销框是正确的,并且它在注销框中显示“确认”作为标题。即使在 ios 中一切都很完美,但注销框显示标题为“index.html”(这是当前页面名称)
$rootScope.logout=function()
{
response=confirm(GetLocalString("HMLOGOUTMSG",_language));
if(response==true)
{
logout();
}
else
{
menuchk();
}
}
我不希望标题为“index.html”。你能建议一种不将标题显示为“index.html”的方法
【问题讨论】:
标签: android angularjs mobile-application phonegap