我正在尝试创建一个代码段来删除所有样式属性,而不管标签使用
HtmlAgilityPack.
这是我的代码:
var elements = htmlDoc.DocumentNode.SelectNodes("//*"); if (elements!=null) { foreach (var element in elements) { element.Attributes.Remove("style"); } }
但是,我没有得到它坚持?如果我在Remove(“style”)后立即查看元素对象.我可以看到style属性已被删除,但它仍然出现在DocumentNode对象中. :/
我感觉有点笨,但对我来说似乎是吗?任何人使用HtmlAgilityPack做这个?谢谢!
更新
public static void RemoveStyleAttributes(this HtmlDocument html) { var elementsWithStyleAttribute = html.DocumentNode.SelectNodes("//@style"); if (elementsWithStyleAttribute!=null) { foreach (var element in elementsWithStyleAttribute) { element.Attributes["style"].Remove(); } } }