<%@pagelanguage="java"import="java.util.*"pageEncoding="UTF-8"%>
<divid="showTimes"></div>
<%
longcurrent_time=System.currentTimeMillis();
longend_time=1337875200000l;
longtime=end_time-current_time;
%>
<script>
varsecond=<%=time/1000%>;//剩余秒数
//写一个方法,将秒数专为天数
vartoDays=function(){
vars=second%60;//秒
varmi=(second-s)/60%60;//分钟
varh=((second-s)/60-mi)/60%24;//小时
vard=(((second-s)/60-mi)/60-h)/24//天
return"剩余:"+d+"天"+h+"小时"+mi+"分钟"+s+"秒";
}
//然后写一个定时器
window.setInterval(function(){
second--;
document.getElementById("showTimes").innerHTML=toDays();
},1000);
</script>
|