Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有
table.rows(i).cells(0).innerHtml outputs <INPUT name=group_478 value=2 type=radio>
如何使用此输入元素作为变量table.rows(i).cells(0)?
table.rows(i).cells(0)
这应该可以帮助您:
table.Rows(i).Cells(0).getElementsByTagName("input")(0).Value
或者也一样
table.Rows(i).Cells(0).childNodes(0).Value