我不知道如何从没有ID的表中获取值。
我想使用DOM从
获取值“03”<tr><th scope='row'>Total WUs</th><td>03</td></tr>
但该表没有ID。这是页面上的第一个表。我将给出整个表的代码打印输出:
<table cellspacing='0' rules='all' border='1' style='border-collapse:collapse;'><tr><th scope='row'>User Name</th><td>laughing_squid</td></tr><tr><th scope='row'>Project Rank</th><td>1,156,036</td></tr><tr><th scope='row'>Team Rank</th><td>2</td></tr><tr><th scope='row'>Total Points</th><td>207</td></tr><tr><th scope='row'>Total WUs</th><td>03</td></tr><tr><th scope='row'>Points Yesterday</th><td>NA</td></tr><tr><th scope='row'>Points Today</th><td>69</td></tr><tr><th scope='row'>PPD Average</th><td>138</td></tr></table>
答案 0 :(得分:0)
检查一下,这个脚本使用的JQuery可以从here下载:
$('table td').each(function(){
console.log($(this).text());
});
如果您只需要值03
,请使用以下内容:
console.log($('table td:eq(4)').text());