我将在我的 PhoneGap 应用程序中实现注销按钮,它将用户返回到身份验证页面(清除字段)。对于按钮,我使用带有 onclick 事件的锚点:
<script type="text/javascript">
function doLogout() {
var backlen = history.length;
history.go(-backlen);
window.location.replace("index.html");
}
</script>
<a data-role="none" href="#" onclick="doLogout"></a>
但它不起作用,即它只是将我返回到已填写文件的身份验证页面,似乎只是退了一步。我不确定history.clear(),因为谷歌搜索它什么也没给我:
<a data-role="none" href="index.html" onclick="javascript:history.clear();"></a>
谁能告诉我我的问题在哪里?如果有另一种解决方案来处理 PhoneGap 中的注销事件,我会遵循它。谢谢