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