【求助】VBS脚本自动选择选项的功能,大家帮忙看下,小弟先谢过
Set ie=WScript.CreateObject("InternetExplorer.Application")ie.visible=1
ie.navigate "http://hi.baidu.com"
Do
Wscript.Sleep 200
Loop Until ie.ReadyState=4
ie.document.getElementById("username").value="用户名"
ie.document.getElementById("password").value="密码"
ie.document.getElementById("mem_pass")
tj = ie.Document.getElementsByName("login")
For i = 0 To tj.length - 1
If tj(i).Type = "submit" And tj(i).Name = "Submit" Then
mypos = InStrRev(tj(i).outerhtml, "Submit")
tj(i).outerhtml = Left(tj(i).outerhtml, mypos - 1) & "Submit1" & _
Mid(tj(i).outerhtml, mypos + 6, Len(tj(i).outerhtml) - mypos - 4)
End If
Next
tj.submit
在[url]http://hi.baidu.com[/url]这里登陆的时候,有一个选项“记住我的登录状态”,它的name是mem_pass,我想在自动登陆时也自动选择这个选项,上边的代码是这样写ie.document.getElementById("mem_pass") ,但是不行呀,请问下各位高手应该怎么写呢?谢谢
[[italic] 本帖最后由 ktt163 于 2007-12-22 18:47 编辑 [/italic]]