我想从具有类用户和 id 的第一个和第二个 TD 中获取文本
<tr class="item-model-number">
<td class="label">Item model number</td>
<td class="value">GL552VW-CN426T</td>
</tr>
我已经尝试过这个 jQuery 代码,但对我不起作用:
$(".item-model-number").find("td").each(function() {
var test = $(this).text();
alert(test);
}
我想GL552VW-CN426T
从td
.tr