本帖最后由 pcl_test 于 2017-3-15 00:43 编辑
本人想製做自動登入,可是就是找不到登入的辦法,可否有請大大指點。
code碼如下:- set ie=createobject("internetexplorer.application")
-
- ie.visible=true
- ie.navigate "http://a1.sp911.net/hp/login.php"
-
- ie.Document.all("user").Value = "test"
- ie.document.all("pass").value = "Passwd"
- ie.Document.all("login();").click()
-
- WaitIE()
-
- sub WaitIE()
- While ie.busy or ie.readystate <> 4
- Wend
- End sub
复制代码
|