2023-05-16 10:50:42 +08:00

26 lines
503 B
JavaScript

$(document).ready(function()
{
if(showLog == 1)
{
setInterval('showLog()', 3000);
showLog();
}
$('#menu li').removeClass('active').find('a[href*=xuanxuan]').parent().addClass('active');
});
function showLog()
{
$.getJSON(createLink('im', 'showLog'), function(response)
{
if(response.result == 'fail')
{
$('#log').html(response.message);
}
else
{
$('#log').html(response.logs);
}
});
}