Set ie=WScript.CreateObject("InternetExplorer.Application")
ie.visible=true
ie.navigate "http://www.5tu.cn/logging.php?action=login"
Do
Wscript.Sleep 200
Loop Until ie.ReadyState=4
ie.document.getElementById("username").value="the123456"
ie.document.getElementById("password").value="the123456"
dl=ie.document.getElementsBytagname("loginsubmit")
dl.submit
ie.document.getElementById("loginsubmit").click
--------------------------------------------------------------------------
这句好像是多余的
dl=ie.document.getElementsBytagname("loginsubmit")
dl.submit
ie.visible=true
ie.navigate "http://www.5tu.cn/logging.php?action=login"
Do
Wscript.Sleep 200
Loop Until ie.ReadyState=4
ie.document.getElementById("username").value="the123456"
ie.document.getElementById("password").value="the123456"
dl=ie.document.getElementsBytagname("loginsubmit")
dl.submit
ie.document.getElementById("loginsubmit").click
--------------------------------------------------------------------------
这句好像是多余的
dl=ie.document.getElementsBytagname("loginsubmit")
dl.submit
