欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vbs获取当前时间日期的代码

程序员文章站 2022-06-25 08:58:20
获取当前日期方法一: 复制代码 代码如下:currentdate1=date()msgbox currentdate1 获取当前日期方法二: 复制代码 代码如下:cu...

获取当前日期方法一:

复制代码 代码如下:

currentdate1=date()
msgbox currentdate1

获取当前日期方法二:

复制代码 代码如下:

currentdate2=year(now)&"-"&month(now)&"-"&day(now)
msgbox currentdate2

获取当前时间:

复制代码 代码如下:

currenttime=hour(now)&":"&minute(now)&":"&second(now)
m = "当前时间"& currenttime
msgbox m