优化注册界面
This commit is contained in:
@@ -105,9 +105,12 @@
|
||||
});
|
||||
|
||||
$('#loginOut').click(function () {
|
||||
if (confirm("确认要退出系统吗?"))
|
||||
sessionStorage.removeItem("userId");
|
||||
location.href = '/user/logout';
|
||||
$.messager.confirm("提示","确认要退出系统吗?",function(r){
|
||||
if(r) {
|
||||
sessionStorage.removeItem("userId");
|
||||
location.href = '/user/logout';
|
||||
}
|
||||
});
|
||||
})
|
||||
//IE下禁止选中
|
||||
document.body.onselectstart = document.body.ondrag = function () {
|
||||
|
||||
Reference in New Issue
Block a user