js获取字体颜色

console.log(getComputedStyle(ttitle[i]).color);

if (getComputedStyle(ttitle[i]).color=="rgb(0, 0, 0)") {

ttitle[i].style.color ='#10adff';

}else{

ttitle[i].style.color ='#000';

}

需要个字体设置颜色让rgb=000

.ttitle{

text-align: left;

color: #000;

}

你可能感兴趣的:(js获取字体颜色)