superaj 's Home

一辈子,总还是得让一些善念, 推着我们前行, 不管是三年,还是三十年, 专注做点东西, 至少对得起光阴。

bat获取页面内容

URL = "http:\\pic.zhengqianer.com"
Set strIE = CreateObject("InternetExplorer.Application")
strIE.Visible = False
strIE.Navigate(URL)
Do While strIE.ReadyState <> 4
Loop
str = strIE.document.body.innerHTML
strIE.quit

Set FSO = CreateObject("scripting.filesystemobject")
set strfile = FSO.CreateTextFile("temp.txt",true,true)
strfile.write str
Set FSO = Nothing

 

Copyright © 2026 superaj 's Home. All Right Reserved.