|
看例子,写的163邮箱的自动登陆:
#include <IE.au3>
$oIE = _IECreate ("http://mail.163.com")
$oForm = _IEFormGetObjByName ($oIE, "login163")
$oQuery = _IEFormElementGetObjByName ($oForm, "username")
_IEFormElementSetValue ($oQuery, "AutoIt IE.au3")
同样的方法,写入密码:
$oQuery = _IEFormElementGetObjByName ($oForm, "password")
_IEFormElementSetValue ($oQuery, "AutoIt IE.au3")
我看了帮助,但是还是不明白,IEFormGetObjByName与 _IEFormElementGetObjByName ,这两个函数的参数和返回值究竟是什么?
第一个的返回值是$oForm,第二个的返回值是$oQuery
$oIE这个变量我了解,他是_IECreate 参数打开网页后,指向网页的变量
那么$oForm和$oQuery,这两个变量分别是指向什么的啊?
我对HMTL有一点基础,望高人能用浅显简单的白话解释下。。。
多谢多谢了。。。
|
|