function reloadPage(){
? var timer=10;
? var interval=setInterval(function(){
? $('#ishows').attr("style","display:block;");
? $('#ishows').text(timer+"s倒計(jì)時(shí)");
? timer-=1;
? if(timer==-1){
? clearInterval(interval)
? window.location.reload();
? }
? },1000);
? }