gusucode.com > ASP.NET《数据库原理及应用技术》课程指导平台的开发(源代码 > ASP.NET《数据库原理及应用技术》课程指导平台的开发(源代码+论文)\CGP\程序\CGP\CGP.UI\JS\date.js

    <!--
function PageDate()
{
	currentDate = new Date()
	with (currentDate)
          {
		day=getDay()
		month=getMonth()+1
		this.document.write(getFullYear()+'\u5e74'+month+'\u6708'+getDate()+'\u65e5')
	}
	if (day==1){document.write(' \u661f\u671f\u4e00')}
	if (day==2){document.write(' \u661f\u671f\u4e8c')}
	if (day==3){document.write(' \u661f\u671f\u4e09')}
	if (day==4){document.write(' \u661f\u671f\u56db')}
	if (day==5){document.write(' \u661f\u671f\u4e94')}
	if (day==6){document.write(' \u661f\u671f\u516d')}
	if (day==0){document.write(' \u661f\u671f\u65e5')}
	document.write('<br>')
}

PageDate()

// -->