|
5精币
// window.clearInterval(chkstop_open);
//checktime5_5('','','','','');
/*防掃*/
$(document).ready(function(){
if($('#illcode').val())
{
var illcode=$('#illcode').val();
switch (illcode)
{
case 'Sweeper':
// alert("系统提醒\n您的帐号疑似有不当操作行为\n即将被登出");
// window.location.href="memberlogout.php";
msg( {"title":"系统提醒","reCode":'' ,"reMsg":'您的帐号疑似有不当操作行为<br>即将被登出','nextUrl':"memberlogout.php"} );
return false;
break;
default:
break;
}
}
});
$(document).ready(function() {
time();
});
var wait=60;
function time()
{
if (wait == 0) {
//window.location.reload()
wait=60;
time();
} else
{
var space=(wait<10) ? '0' : '';
$('.update').html(space+wait ) ;
wait--;
setTimeout(function() {
time()
},
1000)
}
}
</script>
|
|