📄 date.js
字号:
<!--
function PageDate()
{
currentDate = new Date()
with (currentDate)
{
day=getDay()
month=getMonth()+1
this.document.write(getFullYear()+'年'+month+'月'+getDate()+'日')
document.write('<br>')
}
if (day==1){document.write(' 星期一')}
if (day==2){document.write(' 星期二')}
if (day==3){document.write(' 星期三')}
if (day==4){document.write(' 星期四')}
if (day==5){document.write(' 星期五')}
if (day==6){document.write(' 星期六')}
if (day==0){document.write(' 星期日')}
document.write('<br>')
}
PageDate()
// -->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -