// 获取用户信息
if (localStorage.user!=undefined) {
user=JSON.parse(localStorage.user);
// 展示已登录用户的信息
$("#user").text("欢迎:"+user.un+"您的ID:"+user.id);
} else{
user=false;
}
if (localStorage.user!=undefined) {
user=JSON.parse(localStorage.user);
// 展示已登录用户的信息
$("#user").text("欢迎:"+user.un+"您的ID:"+user.id);
} else{
user=false;
}













本站有权保留或删除有争议评论。 参与本评论即表明您已经阅读并接受上述条款。