📄 page348.vbs
字号:
'create an instance of the IE browser
Set objIE = CreateObject("InternetExplorer.Application")
'build a page containing a text field prompting for a date
objIE.Navigate "about:Date: <input type=""text"" name=""txtDate"" size=""10"""
'wait to load page
While objIE.Busy : Wend
objIE.Visible = True 'display page
Set objDoc = objIE.Document.All
'set the value for the field txtDate to today's date
objDoc("txtDate").Value = Date
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -