函数参考


_IEFormElementGetValue

返回指定表单元素的值.

#include <IE.au3>
_IEFormElementGetValue ( ByRef $o_object )

参数

$o_object 表单元素对象的对象变量

返回值

成功: 返回给定表单元素的字符串值
失败: 返回 0并设置@ERROR
@Error: 0 ($_IEStatus_Success) = 无错误
3 ($_IEStatus_InvalidDataType) = 无效数据类型
4 ($_IEStatus_InvalidObjectType) = 无效对象类型
@Extended: 包含无效参数数量

注意/说明

见_IEFormElementSetValue备注.

相关

_IEFormElementSetValue, _IEFormElementGetCollection, _IEFormElementGetObjByName, _IEFormElementOptionSelect, _IEFormElementCheckboxSelect, _IEFormElementRadioSelect

示例/演示


; *******************************************************
; 示例 1 - 打开含表单示例的浏览器, 设置
;               文本表单元素的值, 获取并显示元素的值
; *******************************************************

#include <IE.au3>

Local $oIE = _IE_Example("form")
Local $oForm = _IEFormGetObjByName($oIE, "ExampleForm")
Local $oText = _IEFormElementGetObjByName($oForm, "textExample")
Local $IEAu3Version = _IE_VersionInfo()
_IEFormElementSetValue($oText, $IEAu3Version[5])
MsgBox(4096, "Form Element Value", _IEFormElementGetValue($oText))