我想在 html 代码中访问一个类
<id="main" class="cop">
<div class="body">
<table class="" summary="">
<colgroup class="game_title">//1
<col class="thumb">
<col class="game_title">//2
</colgroup>
<tbody class="">
<tr class="game">
<td class="thumb">
<a rel="nofollow" href=""><img src="" alt="Grudger thumbnail"></a>
</td>
<td class="game_title">//3
**<div class=**"game_title"**><a href="">Grudger</a></div>//I want to access this class only**
我使用代码作为
Element INFORM = source.getElementById("main").getAllElementByclass("game_title");
用于访问game_title
具有元素 Gruger 的类,但此代码无济于事。