当前位置:  开发笔记 > 编程语言 > 正文

如何以编程方式构建AngleSharp CSS(或HTML)DOM

如何解决《如何以编程方式构建AngleSharpCSS(或HTML)DOM》经验,为你挑选了1个好方法。

我发现的所有AngleSharp示例和测试都始于解析CSS或HTML代码段并访问DOM。如何以编程方式构建CSS(或HTML5)文档,并以字符串形式获取结果输出?

我想要这样的东西(伪代码):

var rule = new CssRule();
rule.Selector = ".my-class";

var style = new CssStyle("margin-top", "10px");

rule.add(style);

Florian Rapp.. 5

对于HTML,您需要使用W3C指定的API:

var context = BrowsingContext.New();
// get new document, not completely empty (has head and body)
var document = await context.OpenNewAsync();
var element = document.CreateElement("strong");
element.TextContent = "Hello World!";
document.Body.AppendChild(element);

由于这有点冗长,因此存在一些帮助程序(以扩展方法的形式)以使其更加流畅。还CreateElement可以将用作通用方法,如下所示:

var paragraph = document.CreateElement();

不幸的是,对于CSS,目前尚不存在此类API(工厂方法或类似方法)。操纵它的唯一方法是使用字符串。这不是理想的(我知道),将来我会添加有用的扩展方法来提供此类功能。



1> Florian Rapp..:

对于HTML,您需要使用W3C指定的API:

var context = BrowsingContext.New();
// get new document, not completely empty (has head and body)
var document = await context.OpenNewAsync();
var element = document.CreateElement("strong");
element.TextContent = "Hello World!";
document.Body.AppendChild(element);

由于这有点冗长,因此存在一些帮助程序(以扩展方法的形式)以使其更加流畅。还CreateElement可以将用作通用方法,如下所示:

var paragraph = document.CreateElement();

不幸的是,对于CSS,目前尚不存在此类API(工厂方法或类似方法)。操纵它的唯一方法是使用字符串。这不是理想的(我知道),将来我会添加有用的扩展方法来提供此类功能。

推荐阅读
360691894_8a5c48
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有