我正在使用 HTMLAgilityPack,我希望文档以它出现在网站上的方式显示。意思是如果一个 html 元素具有可见性:显示:无,我不希望我的文档中有那个节点。
我有什么办法可以排除这些节点可见:无或隐藏?
例如
<div class="changeodlabel" style="display:none;"><span class="default">Should not be in document html</span></div>
<div class="changeodlabel" ><span class="default">Should be in document html</span></div>