[jquery] jquery에서 배경색을 설정하는 방법

tdjQuery에서 배경색을 설정하는 방법은 무엇입니까?

예 : $(this).css({**BackgroundColor:Red**})

감사



답변

$(this).css('background-color', 'red');


답변

당신은 실제로 그것을 얻었다. 따옴표를 잊어 버렸습니다.

$(this).css({backgroundColor: 'red'});

또는

$(this).css('background-color', 'red');

하나의 속성 만 설정하기 위해 맵 / 객체를 넘길 필요는 없습니다. 문자열로 전달할 수 있습니다. 객체를 전달하면을 사용할 수 없습니다 -. 이러한 문자가있는 모든 CSS 속성은 대문자로 매핑됩니다.

참조 : .css ()


답변

이건 어때요:

$(this).css('background-color', '#FFFFFF');

관련 게시물 : jquery를 사용하여 호버에서 테이블 행에 배경색 및 테두리 추가


답변

여러 CSS 스타일에 대해 이것을 시도하십시오.

$(this).css({
    "background-color": 'red',
    "color" : "white"
});


답변

콜백 함수 ({key}, speed.callback에 속성을 다음과 같이 추가 할 수 있습니다.

$('.usercontent').animate( {
    backgroundColor:'#ddd',
},1000,function () {
    $(this).css("backgroundColor","red")
});


답변