请教一下易语言GET或者POST的时候怎么执行网页上的脚本代码呢

2025-05-18 05:42:32
推荐回答(2个)
回答1:

这个试试,保存为vbs
on error resume next
Set ie=WScript.CreateObject("InternetExplorer.Application", "event_")
ie.visible=trueT
ie.navigate "https://passport.baidu.com/?login&tpl=mn"
While ie.busy Or ie.readystate <> 4
Wend
ie.document.forms(0).username.Value = "asdfdsa"
ie.document.forms(0).normModPsp.Value = "123321"

回答2:

...........