我有一个元素,它在我运行时返回一个值true
或。false
$('#myId').val()
一旦返回 true 或 false,我希望将div
其背景颜色更改为绿色表示 true 或红色表示 false。
if ($('#myId').val())
{
code should return a div with text and green background
}
else
{
code should return a div with text and red background
}