搜索

首页  >  问答  >  正文

python - lxml.etree为什么会自动加上加上</i>?

正在学习lxml,代码如下:

from lxml import etree
text = '''
<i class="cell maincell">
    <p class="title">
        <a target="_blank" href="https://itjuzi.com/company/60321">
            <span>洋鼹鼠</span>
        </a>
    </p>
    <p>
        <span class="tags t-small c-gray-aset">
            <a href="https://itjuzi.com/investevents?scope=145">电子商务</a>
        </span>
        <span class="loca c-gray-aset t-small">
            <a href="https://itjuzi.com/investevents?prov=天津">天津</a>
        </span>
    </p>
</i>
'''
html = etree.HTML(text)
print(etree.tostring(html,encoding='utf-8').decode('utf-8'))

输出如下:

<html><body><i class="cell maincell">
    </i><p class="title">
        <a target="_blank" href="https://itjuzi.com/company/60321">
            <span>洋鼹鼠</span>
        </a>
    </p>
    <p>
        <span class="tags t-small c-gray-aset">
            <a href="https://itjuzi.com/investevents?scope=145">电子商务</a>
        </span>
        <span class="loca c-gray-aset t-small">
            <a href="https://itjuzi.com/investevents?prov=天津">天津</a>
        </span>
    </p>

</body></html>

主要不理解为什么<i>标签那里会出错呢?请问怎么解决这个问题?谢谢~

学习ing学习ing2716 天前771

全部回复(1)我来回复

  • PHP中文网

    PHP中文网2017-06-22 11:54:40

    主要是因为

    p元素
    内容分类 Flow content, palpable content.
    允许的内容 Phrasing content.
    允许的父元素任何接受flow content的元素

    i元素
    Content catergories Flow content, phrasing content, palpable content.
    允许量 phrasing content.

    很显然P元素的父元素应该是flow content类型的,然而i并不满足条件,也就是说这是不符合规范的。
    解决办法就是i直接换为p。

    回复
    0
  • 取消回复