mui.plusReady(function(){
//判断是否登录(UName/Utoken)
if(plus.storage.getItem('uName') !== null)
{
document.getElementById("t_uName").textContent ="账号: " plus.storage.getItem('uName');
console.log(plus.storage.getItem('uName') " " plus.storage.getItem('uToken') " " plus.storage.getItem('uId'));
var target = document.getElementById("l_reg");
target.style.display="none";
var target = document.getElementById("l_log");
target.style.display="none";
}
else
{
console.log("没有登录");
//refresh();
var target = document.getElementById("l_uname");
target.style.display="none";
var target = document.getElementById("l_reg");
target.style.display="block";
var target = document.getElementById("l_log");
target.style.display="block";
}
});
从登陆页面跳转过来之后,想要刷新当前页面然后选择显示的内容
function refresh(){
var wobj = plus.webview.getWebviewById("tab-webview-subpage-setting.html");
wobj.reload(true);
//window.location.reload()
}
这个方法应该怎么调用,我在注销按钮绑定这个事件后,可以实现刷新,但是登陆后跳转,不知道写在哪儿,如果写在值判断中,会一直刷新页面,因为值一直存在!
r***@live.com (作者)
这个问题通过本地存储数据解决了
2018-05-01 16:18