|
姐姐要学会查user manual先,select这个methond的 value 必须是 item name 或者 index,而你在使用index时,需要在前面加#
Description
Selects the specified radio button from the radio group, replacing the previous selection.
Syntax
object.Select Value
Argument Description
object A test object of type WebRadioGroup.
Value Required. A String value. The value to select. The value can either be one of the items in the list or an index. To specify the index of the item to select, use "#index". Index values begin with 0.
所以你的代码应该改为 select "#" & arr(i) |
|