我正在使用jquery css()函数来编辑元素的border-left。我的代码
$('.fc-event').css({
"border-left":"4px solid "+color
});
但是当我检查元素时,我发现它将颜色设置为所有边框和边框 - 左边只有4px和实体
element.style {
border-color: rgb(186, 67, 67);
border-left-width: 4px;
border-left-style: solid;
}
为什么会这样?