2023-05-16 10:47:08 +08:00

14 lines
238 B
JavaScript

$().ready(function()
{
$('#refreshBtn').click(function()
{
$url = $(this).attr('href');
$.get($url, function(response)
{
window.location.reload();
});
return false;
});
});