我有
table.rows(i).cells(0).innerHtml outputs
<INPUT name=group_478 value=2 type=radio>
如何使用table.rows(i).cells(0)
将此输入元素作为变量?
答案 0 :(得分:1)
这应该可以帮助你:
table.Rows(i).Cells(0).getElementsByTagName("input")(0).Value
或者
table.Rows(i).Cells(0).childNodes(0).Value