<!--
if (self != top) {top.location = self.location;}

document.write("<span id=time></span>") //输出显示时间日期的容器 
//每1000毫秒(即1秒) 执行一次本段代码 
setInterval("time.innerText=new Date().toLocaleString()+' 星期'+'日一二三四五六'.charAt(new Date().getDay());",1000) 
 


//-->
