0

你知道 htmlagilitypack 是如何处理属性最小化的吗?例如:

<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio tag.
</audio>

控件被最小化并且在正确的 xhmtl 中应该这样写:

<audio controls="controls">
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio tag.
</audio>

控件是什么节点类型(在上面的例子中)?

4

1 回答 1

1

截屏

从上面的截图可以看出,“controls”属性的类型为“HtmlAgilityPack.HtmlAttribute”,其值为空字符串。

于 2013-02-05T21:23:07.447 回答