Вопрос

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