IT

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

lottoking 2020. 7. 21. 07:42
반응형

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")
});

참고 URL : https://stackoverflow.com/questions/4780670/how-to-set-background-color-in-jquery

반응형