以chrome显示,但不在页面源中显示

时间:2019-10-09 09:00:54

标签: rvest

点击“显示摘要”图标时,我可以在Chrome中看到摘要。但是我无法在页面源代码中找到它。

http://epubs.siam.org/toc/smjmap/38/1

我可以有多个标题,没有下面的摘要。

url <- read_html("http://epubs.siam.org/toc/smjmap/38/1")

title <- url %>%

  html_nodes(".art_title") %>%

  html_text()

我想使用此命令。但是,不可能使用它,因为 我在页面源代码中看不到摘要。 因此,我使用:

html=read_html("http://epubs.siam.org/toc/smjmap/38/1")

comment_area = html_nodes(html,".toc" )

comments = html_nodes(comment_area, ".abstractSection")

html_text(comments)
  

html_text(评论)    [1]“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“

我想一次获得所有摘要。

谢谢您的帮助。

0 个答案:

没有答案