是否可以通过 vbscript 更改 css 样式?下面的代码不适用于Windows 脚本主机:
Dim oIE
Set oIE = CreateObject("InternetExplorer.Application")
oIE.navigate("www.website.com")
Do While oIE.Busy
WScript.Sleep 100
Loop
oIE.document.getElementById("div-id-here").style.backgroundcolor="#ff0000"