这个试试,保存为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"
...........