ホームページ > 記事 > ウェブフロントエンド > 現在の時刻と日付を取得する VBS コード
現在の日付を取得する方法 1:
Currentdate1=date() msgbox Currentdate1
現在の日付を取得する方法 2:
Currentdate2=year(Now)&"-"&Month(Now)&"-"&day(Now) msgbox Currentdate2
現在の時刻を取得する:
CurrentTime=Hour(Now)&":"&Minute(Now)&":"&Second(Now) m = "当前时间"& CurrentTime msgbox m
現在の時刻と日付の取得に関する VBS コード関連の記事については、次の記事を参照してください。 PHP中国語ウェブサイトです!