gpt4 book ai didi

html - 如何使用 Hpricot 删除 html 元素的样式属性?

转载 作者:数据小太阳 更新时间:2023-10-29 08:41:39 25 4
gpt4 key购买 nike

像这样:

<p style="font-size: 12pt;">
Hello world
<span style="font-weight: bold;">just do it</span>
</p>

我想删除每个元素的“样式”属性。我想要这样的结果:

<p>Hello world <span>just do it</span></p>

如何使用 hpricot 做到这一点?

谢谢。


好的,我已经解决了这个问题,如下所示:

doc = Hpricot("<p style='xxx'>are you ok?</p>")

doc.search("[@style]").each do |e|
e.remove_attribute("style")
end

最佳答案

有时写入堆栈溢出会自动解决您的问题:)(我的经验告诉我)

关于html - 如何使用 Hpricot 删除 html 元素的样式属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3066883/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com