﻿//时间
GetCurTime();
setInterval("GetCurTime();",1000);

function GetCurTime()
{
    webtime = document.getElementById('jnkc');
    webtime.innerHTML= new Date().getFullYear()+'年'+eval(new Date().getMonth()+1)+'月'+new Date().getDate()+'日';    
}