带有类声明的importHTML

时间:2017-03-10 12:11:58

标签: google-sheets

代码=ImportHtml(“http://en.wikipedia.org/wiki/Demographics_of_India“; “table”;4)对我有用。

我现在想要指定具有特定CSS类的HTML元素。对于importXML,它的作用类似于=importxml(http://example.com,"//*[@class='teaser']") - 它应该如何用于importHTML?

1 个答案:

答案 0 :(得分:0)

我认为你不能用ImportHtml来定位类。 但我在B2&amp ;;中创建了ImportXml B3细胞,所以你可以在这里测试它,看看它是否有助于你:

https://docs.google.com/spreadsheets/d/18QIz2fzV0iAI2rdgJqALQx_T9bJjvwyjZIwH-0bLCjI/edit?usp=sharing

=ImportXml("https://en.wikipedia.org/wiki/Demographics_of_India", "//*[@id='mw-content-text']/div[6]")

并且在B3单元格中有一个带有类定位的示例:

=IMPORTXML("https://en.wikipedia.org/wiki/Demographics_of_India", "//div[contains(@class, 'printfooter')]")
欢呼,k