This repository has been archived on 2024-09-30. You can view files and clone it, but cannot push or open issues/pull-requests.
|
var $ = layui.jquery; // 获取Layui的jQuery对象
|
|
|
|
$('#logoutLink').on('click', function () {
|
|
// 向后端发送登出请求
|
|
$.get('/logout', function (data) {
|
|
// 重定向到登录页面,或根据后端响应做其他处理
|
|
window.location.href = '/login';
|
|
});
|
|
}); |