如何有条件地更改背景颜色。
HTML:
<label class="control-label bold" id="lbstatus"></label>
JS:
if ($("#lbstatus").text() == "progress")
{
//background color label change
}
答案 0 :(得分:1)
使用jQuery css:
if ($("#lbstatus").text() === "progress")
{
$("#lbstatus").css("background-color", "blue");
}