我想使用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函数来保持页面快速运行。
答案 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]")
字符(表示'或')和第二表达式|