﻿//时间
 GetCurTime();
setInterval("GetCurTime();",1000);

function GetCurTime()
{
    webtime = document.getElementById('jnkc');
    webtime.innerHTML= new Date().getFullYear()+'年'+eval(new Date().getMonth()+1)+'月'+new Date().getDate()+'日' +' 星期'+'日一二三四五六'.charAt(new Date().getDay());    
}
