📄 test2_6_2.htm
字号:
<html>
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF">
<script language="VBScript">
option explicit
dim mydate
mydate=#10/17/2000 6:19:20 PM#
document.write(mydate)
document.write("<br>")
mydate=dateserial(2000,10,17)
document.write(mydate)
document.write("<br>")
mydate=timeserial(18,19,20)
document.write(mydate)
document.write("<br>")
mydate=dateserial(2000,10,17)+timeserial(18,19,20)
document.write(mydate)
document.write("<br>")
mydate=DateValue("10/17/2000")
document.write(mydate)
document.write("<br>")
mydate=timevalue("18:19:20")
document.write(mydate)
document.write("<br>")
mydate=DateValue("10/17/2000")+timevalue("18:19:20")
document.write(mydate)
document.write("<br>")
</script>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -