「jQuery」css( )でstyle属性の追加、変更、削除

1.1つのcssプロパティ
class「info」がついた要素のcss「background-color」を「yellow」に追加,変更
$('.info’).css('background-color’,’yellow’);

2.複数のcssプロパティ
「userid」がついた要素のcss「color」を「red]に、[font-size」を[30px]に追加、変更
$('#userid’).css({'background-color’:’red’,’font-size’:’30px’});

3.cssプロパティの削除
$('.user’).css('background-color’,");

jQuery

Posted by arkgame