質問

I'm implementing microdata on site built in C#. The desired wrapper div for a product should look like this:

<div itemscope itemtype="http://data-vocabulary.org/Product">

It's easy to add the itemtype attribute like below

domElement.Attributes["itemtype"] = "http://data-vocabulary.org/Product";

But I have no idea how can I add a single word attribute like itemscope.

役に立ちましたか?

解決

Generally speaking, attributes tend to require values with many libraries. Most people will get around this by writing something like itemscope=true or itemscope="". EDIT: Reworded when I found that some XML implementations do use blank attributes without any issues.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top