返回列表 发帖
最直观的是用 InternetExplorer.Application,示例:
  1. arr = Array("http://www.baidu.com","http://hao.360.cn/")
  2. Set ie = CreateObject("InternetExplorer.Application")
  3. For Each url In arr
  4. ie.Navigate url
  5. Do While(ie.ReadyState <> 4) : WScript.Sleep 100 : Loop
  6. MsgBox ie.Document.documentElement.innerText
  7. Next
  8. ie.Quit()
复制代码

TOP

返回列表