本文介绍了如何将新标签插入到 BeautifulSoup 对象中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
试图通过 BS 了解 html 结构.
我正在尝试插入一个新标签:
self.new_soup.body.insert(3, """<div id="file_history"></div>""")
当我检查结果时,我得到:
<div id="file_histor"y></div>
所以我要插入一个字符串,该字符串已为 websafe html 进行了清理..
我希望看到的是:
如何在位置 3 插入一个新的 div
标签,id 为 file_history
?
解决方案
使用工厂方法创建新元素:
new_tag = self.new_soup.new_tag('div', id='file_history')
并插入:
self.new_soup.body.insert(3, new_tag)
Trying to get my head around html construction with BS.
I'm trying to insert a new tag:
self.new_soup.body.insert(3, """<div id="file_history"></div>""")
when I check the result, I get:
<div id="file_histor"y></div>
So I'm inserting a string that being sanitised for websafe html..
What I expect to see is:
<div id="file_history"></div>
How do I insert a new div
tag in position 3 with the id file_history
?
解决方案
Use the factory method to create new elements:
new_tag = self.new_soup.new_tag('div', id='file_history')
and insert it:
self.new_soup.body.insert(3, new_tag)
这篇关于如何将新标签插入到 BeautifulSoup 对象中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!