index.html在根目录
执行页面代码路径html/my.html
返回到首页的代码:clearlogin('../index.html');
公用js:
function clearlogin(_target) {
//_target为首页的相对地址
//清除缓存数据
localStorage.removeItem("mylogin");
localStorage.removeItem("mytype");
localStorage.clear();
//获取当前webview
var curwv = plus.webview.currentWebview();
//获取所有webview
var allwv = plus.webview.all();
//关闭除当前以外的其他webview
for(var i = 0; i < allwv.length; i++) {
if(allwv[i].getURL() != curwv.getURL()) {
plus.webview.close(allwv[i]);
}
}
//打开首页
plus.webview.open(_target);
//关闭当前页
plus.webview.close(curwv);
}
0 个回复