私はMVCアプリケーションのC#コードでhtmlテーブルを生成しています。
表のセルの値を赤で色付けしたいのですが、これは(column-xの値がcolumn-xの値より大きく、column-xの色をredとして設定した場合)です。
列-xとカラムyが自分のIDに、無条件に基づいてJavascriptで色を設定します
はHTML、それが表示されている理由は、私が
$('#body table').each(function() {
$('#' + this.id + ' ' + 'tr').each(function() {
var v1 = $('#TodayPDue').html();
var v2 = $('#TodayIntDue').html();
if (v1 > v2){
$('#TodayPDue').css('color','red');
}
})
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table id='CollectionRPT' class='table table-bordered table-hover'>
<tbody>
<tr>
<td>1</td>
<td>BIHAR</td>
<td id='TodayPDue'>2220515</td>
<td id='TodayIntDue'>457565</td>
<td id='TodayPCollected'>0</td>
<td id='TodayIntCollected'>0</td>
<td id='MonthPDue'>10232468</td>
<td id='MonthIntDue'>2058526</td>
<td id='MonthPCollected'>5912869</td>
<td id='MonthIntCollected'>1167760</td>
<td id='YearPDue'>6432342</td>
<td id='YearIntDue'>1303773</td>
<td id='YearPCollected'>2111473</td>
<td id='YearIntCollected'>413023</td>
</tr>
</tbody>
</table>
任意のアイデアを使用していますJavaScriptコードを生成しているよ持っています効果?
あなたは(V1> V2) 'やっている場合、'何を期待していますか? – evolutionxbox
色はtdの内容が赤で、tdはidが "TodayPDue" –