我試圖通過更新CSS類來突出顯示具有特定項目ID的表格行(在第一列中),但是不起作用:
.inactive {
background-color: "red";
}
每當發生特定事件時,我的代碼都會調用以下JavaScript函數:
function highlight_item(item_id){
var tableRow = $("#itemsTable tr td:first-child").filter(function() {
return $(this).text() == item_id
}).parent();
tableRow.addClass("inactive")
}
奇怪的是,如果我將addClass()調用替換為
tableRow.css("backgroundColor", "red")
我到底做錯了什么?
刪除“紅色”中的引號。使用。非活動{背景色:紅色;}