具有交替行的IMPORTXML表

时间:2015-06-09 23:07:22

标签: import google-sheets

我想使用Google Sheet IMPORTXML功能仅导入' 1B'来自this Fangraphs页面的专栏。

我可以使用此功能:

=importxml("http://www.fangraphs.com/statsd.aspx?playerid=9166&position=C&type=1&gds=&gde=&season=2015", "//tr[@class='rgRow']/td[10]")

导入表格中的 EVERY OTHER 行,因为该表格分为两类' rgRow'并且' rgAltRow。'但是,我需要导入每个行。

我还想在列表中一直导入,而不是在每个新标题处停止。

怎么可以这样做?我宁愿使用多个IMPORTXML函数来保持页面快速运行。

1 个答案:

答案 0 :(得分:2)

假设这是一个xpath查询,请尝试:

window.onload = function()
{
    // my JSCodeHERE
}

请注意添加=importxml("http://www.fangraphs.com/statsd.aspx?playerid=9166&position=C&type=1&gds=&gde=&season=2015", "//tr[@class='rgRow']/td[10] | //tr[@class='rgAltRow']/td[10]") 字符(表示'或')和第二表达式|