私はカミソリビューで引用符を表示しようとしています。 ViewModelで引用符のリストをループすると、リスト内の他のすべての項目にblockquote-reverseのクラスを追加できる必要があります。カミソリビューでViewModelをループするときに、他のすべてのアイテムにCSSクラスを追加
下記を参照してください:あなたは%
演算子を使用できるように
@model IEnumerable<CustomerViewModel>
@foreach (var customer in Model)
{
@* if index is odd *@
<blockquote>
<p>@customer.Name</p>
<footer>@customer.Quote</cite></footer>
</blockquote>
@* if index is even *@
<blockquote class="blockquote-reverse">
<p>@customer.Name</p>
<footer>@customer.Quote</cite></footer>
</blockquote>
}
この回答をお寄せいただきありがとうございます。私はかなり私がC#で行うことができるかみそりで何かをすることができます忘れて... –