5
import urllib
import lxml.html
down='http://blog.sina.com.cn/s/blog_71f3890901017hof.html'
file=urllib.urlopen(down).read()
root=lxml.html.document_fromstring(file)
body=root.xpath('//div[@class="articalContent  "]')[0]
print body.text_content()

当我运行代码时,我得到的是文本内容,我怎样才能得到它的 html 源代码,而不是文本内容?

4

1 回答 1

6

利用

html = lxml.html.tostring(node)

请:首先阅读您正在使用的工具的基本文档。

于 2012-12-31T07:00:06.667 回答