function hpview() {
$.ajax({
url: '/json/hp?r=<?=$r;?>',
dataType: 'json',
success: function(data) {
$('#hpview').html(data.hp);
$('#max_hp').html(data.max_hp);
$('#cavetime').html(data.cave);
$('#cavesrc').html(data.cavesrc);
$('#clanwar').html(data.clanwar);
}
});
};
setInterval(hpview, 1000);
document.onkeydown = function(e) {
if (e.keyCode == 'G'.charCodeAt()) {
location="https://wenr.online/game?r=<?=$r;?>"
}
}