我想从HTML标记中删除所有属性,例如

<div class="" style="" >


我已经尝试使用HTMLAgilityPack进行此操作,但是SelectNodes似乎无法使用

foreach(var eachNode in HtmlDocument.DocumentNode.SelectNodes("//*"))
{
   eachNode.Attributes.RemoveAll();
}


我将如何在UWP的C#中进行这项工作?

最佳答案

作为SelectNodes("//*")的替代方法,可以使用Descendants(),它应返回相同的结果:

foreach(var eachNode in HtmlDocument.DocumentNode.Descendants().Where(x => x.NodeType == HtmlNodeType.Element))
{
    eachNode.Attributes.RemoveAll();
}

关于c# - 如何删除HTML标记中的所有属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37700985/

10-11 05:57