我对“金色”方案拟定工作非常新,需要某种帮助!
我有一个伙伴关系。 NET Pivot Table and i the cell of that table there a #re vach Value 1, 2, 3 or 4. 无论选择哪一种价值,均将囚室变为四个颜色之一。 现在,该法典在火焰中发挥作用,但并不奏效,在我一页的头脑中将它放在各栏。
what am i doing wrong?
<script type="text/javascript" src="../../../Scripts/jquery-1.6.1.min.js">
$(document).ready(function () {
$(".myGridView1 tr").each(function () {
$("td").filter(function () { return $.text([this]) == 1 ; }).css( background , green );
$("td").filter(function () { return $.text([this]) == 2 ; }).css( background , orange );
$("td").filter(function () { return $.text([this]) == 3 ; }).css( background , red );
$("td").filter(function () { return $.text([this]) == 4 ; }).css( background , blue );
});
});
</script>