欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

jQuery addClass()方法

呂致盈2年前9瀏覽0評論

我試圖通過更新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")

我到底做錯了什么?

刪除“紅色”中的引號。使用。非活動{背景色:紅色;}