Board logo

标题: [问题求助] VBS脚本internetexplorer.application怎么获取document? [打印本页]

作者: jyswjjgdwtdtj    时间: 2023-2-22 22:03     标题: VBS脚本internetexplorer.application怎么获取document?

  1. set ie = CreateObject("internetexplorer.application")
  2. ie.navigate "https://xxxx.xxxx/xxxx"
  3. Set d=ie.Document'报错,未指定的错误
复制代码

作者: czjt1234    时间: 2023-2-23 08:13

  1. Set oIE = CreateObject("InternetExplorer.Application")
  2. oIE.Navigate "https://www.baidu.com/"
  3. 'oIE.Visible = False
  4. Do
  5.     WScript.Sleep 200
  6. Loop While oIE.Busy Or oIE.ReadyState <> 4
  7. Set d = oIE.Document
  8. MsgBox TypeName(d)
复制代码

作者: jyswjjgdwtdtj    时间: 2023-2-23 18:42

回复 2# czjt1234


    错误:远程服务器不存在或不可用
不管是busy还是readystate
作者: czjt1234    时间: 2023-2-23 19:01

回复 3# jyswjjgdwtdtj


   我在自己的电脑上测试没问题啊

win7x64sp1

哦,你是win10,我再试一下
作者: czjt1234    时间: 2023-2-23 19:13

win10 22h2
IE被edge强行替代
等待的时间有点长,但是2楼的脚本还是可以正常运行

你要不是研究internetexplorer.application对象
建议用CreateObject("Msxml2.XMLHTTP")对象下载网页




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2