"立即登录"按钮对应的脚本程序是啥?解决方案

立即登录按钮对应的脚本程序是啥?http://www.zj.10086.cn/index.htm/上面是中国移动的网站我想程序打开

"立即登录"按钮对应的脚本程序是啥?

http://www.zj.10086.cn/index.htm/
上面是中国移动的网站
我想程序打开它,但研究了半天,找不到立即登录(图片)按钮的程序代码??
即我自动输了手机等信息,如何自动提交(不采用SENDKEY方法)

Set ie=WScript.CreateObject("InternetExplorer.Application")  
ie.visible=true  
ie.navigate "http://www.zj.10086.cn/index.htm/"  
Do  
 Wscript.Sleep 200  
Loop Until ie.ReadyState=4  
....
ie.navigate "javascript:checkSSOForm(form)"
ie.navigate "https://sso.zj.chinamobile.com/Login"

这做总是不对?

[解决办法]

探讨
http://www.zj.10086.cn/index.htm/
上面是中国移动的网站
我想程序打开它,但研究了半天,找不到立即登录(图片)按钮的程序代码??
即我自动输了手机等信息,如何自动提交(不采用SENDKEY方法)

Set ie=WScript.CreateObject("InternetExplorer.Application")
ie.visible=true ……

[解决办法]
<a href="#"><input height="27" width="131" border="0" align="absmiddle" type="image" style="padding-bottom: 3px;" src="images/login_btn.jpg"></a>
忘记密码了?

...
dim obj
set obj = ie.Document.All
for i=0 to obj.length - 1
if Ucase(obj(i).TagName) = "INPUT" then
if instr(1, lcase(obj(i).src),"images/login_btn.jpg")>0 then
obj(i).Click
end if
End if
next