Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 vbscript 进行多线程。我必须在多个浏览器/标签中填写一个网页,这样,我希望可以减少完成时间。请建议。
Vbscript 本身没有任何启动单独线程的方法,尽管如果你尝试,那么它更像是多线程的“仿真”而不是其他任何东西
您可以查看此文档
要在 vbscript 中打开一个 url,你可以尝试这样的事情:-
set wShell = CreateObject("Shell.Application") wShell.Open "C:\temp\abc.txt"