我正在尝试将背景颜色添加到表格元素中。
jq("[class=detailro]").each(function (index) {
var thisAttr = jq(this).attr("pdmqa");
if (thisAttr == "customer.organization.name"){
thisAttr = jq(this).html();
jq(this).css({"background":"#000"});
console.log(thisAttr.trim());}
});
我想实现改变第th个元素的背景颜色。
感谢
答案 0 :(得分:2)
你可以这样做
$('#df_0_2').css('background', '#000');
的修改
如果您想定位customer.organization.name
,可以执行此操作
$this = $("td[pdmqa='customer.organization.name']");
$this.css('background', '#000');
希望这有帮助。
SYA:)